Spring / Spring MVC Interview questions
Difference between RequestMapping and GetMapping in Spring MVC/Spring Boot.
The @GetMapping is a composed annotation which is nothing but the short notation of @RequestMapping(method = RequestMethod.GET). Both these methods support the "consumes". The consume options are such as,
consumes = "text/plain" consumes = {"text/plain", "application/*"}:
More Related questions...