Spring Boot - Request and Response Handling
Given this controller method:
What will be the HTTP status code and response body?
@PostMapping("/create")
public ResponseEntity create() {
return new ResponseEntity<>("Created", HttpStatus.CREATED);
} What will be the HTTP status code and response body?
