@RequestMapping 和 @GetMapping @PostMapping 区别

@RequestMapping 和 @GetMapping @PostMapping 区别 @GetMapping是一个组合注解,是@RequestMapping(method = RequestMethod.GET)的缩写。web @PostMapping是一个组合注解,是@RequestMapping(method = RequestMethod.POST)的缩写。app
相关文章
相关标签/搜索