@RequestMapping 和 @GetMapping @PostMapping 区别

@RequestMapping   和  @GetMapping @PostMapping 区别

 

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

 

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

 

 

 

 

转自:https://www.cnblogs.com/ghc666/p/8657526.html

posted @ 2019-04-01 12:16  wqkeep  阅读(202)  评论(0编辑  收藏  举报