@RequestMapping 和 @GetMapping @PostMapping 区别
@GetMapping是一个组合注解,是@RequestMapping(method = RequestMethod.GET)的缩写。
@PostMapping是一个组合注解,是@RequestMapping(method = RequestMethod.POST)的缩写。
转载于:https://www.cnblogs.com/shangtouhua/p/10129653.html
相关资源:JAVA上百实例源码以及开源项目