Spring Boot - Request and Response Handling
Identify the error in this Spring Boot controller method that tries to return a 201 Created status:
public ResponseEntitycreateItem() { return new ResponseEntity<>("Item created", 201); }
