What is the best way to return different types of ResponseEntity in Spring MVC or Spring-Boot What is the best way to return different types of ResponseEntity in Spring MVC or Spring-Boot json json

What is the best way to return different types of ResponseEntity in Spring MVC or Spring-Boot


I recommend using Spring's @ControllerAdvice to handle errors. Read this guide for a good introduction, starting at the section named "Spring Boot Error Handling". For an in-depth discussion, there's an article in the Spring.io blog that was updated on April, 2018.

A brief summary on how this works:

  • Your controller method should only return ResponseEntity<Success>. It will not be responsible for returning error or exception responses.
  • You will implement a class that handles exceptions for all controllers. This class will be annotated with @ControllerAdvice
  • This controller advice class will contain methods annotated with @ExceptionHandler
  • Each exception handler method will be configured to handle one or more exception types. These methods are where you specify the response type for errors
  • For your example, you would declare (in the controller advice class) an exception handler method for the validation error. The return type would be ResponseEntity<Error>

With this approach, you only need to implement your controller exception handling in one place for all endpoints in your API. It also makes it easy for your API to have a uniform exception response structure across all endpoints. This simplifies exception handling for your clients.


You can return generic wildcard <?> to return Success and Error on a same request mapping method

public ResponseEntity<?> method() {    boolean b = // some logic    if (b)        return new ResponseEntity<Success>(HttpStatus.OK);    else        return new ResponseEntity<Error>(HttpStatus.CONFLICT); //appropriate error code}

@Mark Norman answer is the correct approach


i am not sure but, I think you can use @ResponseEntity and @ResponseBody and send 2 different one is Success and second is error message like :

@RequestMapping(value ="/book2", produces =MediaType.APPLICATION_JSON_VALUE )@ResponseBodyBook bookInfo2() {    Book book = new Book();    book.setBookName("Ramcharitmanas");    book.setWriter("TulasiDas");    return book;}@RequestMapping(value ="/book3", produces =MediaType.APPLICATION_JSON_VALUE )public ResponseEntity<Book> bookInfo3() {    Book book = new Book();    book.setBookName("Ramayan");    book.setWriter("Valmiki");    return ResponseEntity.accepted().body(book);}

For more detail refer to this: http://www.concretepage.com/spring-4/spring-4-mvc-jsonp-example-with-rest-responsebody-responseentity