@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)的缩写。

上一篇:10种canvas鼠标光标动画特效


下一篇:GetMapping 和 PostMapping