@RequestMapping 和 @GetMapping @PostMapping 区别
作者:互联网
https://www.cnblogs.com/kaka666/p/8342460.html
@RequestMapping 和 @GetMapping @PostMapping 区别
@RequestMapping 和 @GetMapping @PostMapping 区别
@GetMapping是一个组合注解,是@RequestMapping(method = RequestMethod.GET)的缩写。
@PostMapping是一个组合注解,是@RequestMapping(method = RequestMethod.POST)的缩写。
标签:RequestMapping,PostMapping,RequestMethod,GetMapping,注解,method 来源: https://blog.csdn.net/songxiugongwang/article/details/94753282