Annotation Interface GetMapping


Annotation for mapping HTTP GET requests onto specific handler methods.

Specifically, @GetMapping is a composed annotation that acts as a shortcut for @RequestMapping(method = RequestMethod.GET).

Since:
4.3
Author:
Sam Brannen
See Also: