@RequestMapping 和 @GetMapping @PostMapping 区别

mac2022-06-30  30

@RequestMapping   和  @GetMapping @PostMapping 区别

 

@GetMapping是一个组合注解,是@RequestMapping(method = RequestMethod.GET)的缩写。

 

@PostMapping是一个组合注解,是@RequestMapping(method = RequestMethod.POST)的缩写。

转载于:https://www.cnblogs.com/shangtouhua/p/10129653.html

相关资源:JAVA上百实例源码以及开源项目
最新回复(0)