Spring Boot - Request and Response Handling
Given this Spring Boot controller method:
What headers will the client receive in the response?
public ResponseEntitygetData() { return ResponseEntity.ok() .header("X-Rate-Limit", "1000") .header("X-Request-ID", "abc123") .body("Success"); }
What headers will the client receive in the response?
