When use ResponseEntity and @RestController for Spring RESTful applications

I am working with Spring Framework 4.0.7, together with MVC and Rest I can work in peace with: @Controller ResponseEntity<T> For example: @Controller @RequestMapping(“/person”) @Profile(“responseentity”) public class PersonRestResponseEntityController { With the method (just to create) @RequestMapping(value=”https://stackoverflow.com/”, method=RequestMethod.POST) public ResponseEntity<Void> createPerson(@RequestBody Person person, UriComponentsBuilder ucb){ logger.info(“PersonRestResponseEntityController – createPerson”); if(person==null) logger.error(“person is null!!!”); else logger.info(“{}”, person.toString()); personMapRepository.savePerson(person); … Read more