Spring Boot - REST Controllers
Given the code snippet:
What will be the HTTP status and headers in the response?
return ResponseEntity.status(HttpStatus.CREATED)
.header("Location", "/items/123")
.body("Item created");What will be the HTTP status and headers in the response?
