@RequestMapping   和  @GetMapping @PostMapping 区别

 

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

 

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

posted on 2018-10-31 10:47  巨象  阅读(358)  评论(0编辑  收藏  举报