Annotation Interface PostMapping


Annotation for mapping HTTP POST requests onto specific handler methods.

Specifically, @PostMapping is a composed annotation that acts as a shortcut for @RequestMapping(method = HttpMethod.POST).

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