Spring Boot - Request and Response Handling
Identify the error in this mapping:
@RequestMapping(path = "/delete", method = "DELETE")
public String deleteItem() {
return "Deleted";
}