Reputation: 1521
How can i return a ResponseEntity with 200 status code and no body ?
I have a Http PUT method and i dont want to return a response body. I want to return only the status code.
Upvotes: 0
Views: 4954
Reputation: 4630
@RequestMapping(method = RequestMethod.PUT, value = "/do/something")
public ResponseEntity doSomething() {
return new ResponseEntity<>(null, HttpStatus.OK);
}
Upvotes: 2