What’s the difference between @GetMapping and @RequestMapping(method = RequestMethod.GET)? I’ve seen in some Spring Reactive examples, that @GetMapping was used instead of @RequestMapping 6 Answers 6
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 {...