Spring Boot - Request and Response Handling
What is wrong with this method to return 204 No Content?
@DeleteMapping("/delete")
public ResponseEntity delete() {
return new ResponseEntity<>(HttpStatus.NO_CONTENT);
} 