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 = HttpMethod.GET).

作者:
TODAY 2020/12/8 21:46