@RequestMapping和@GetMapping和PostMapping
@RequestMapping和@GetMapping和PostMapping
简介
@GetMapping是一个组合注解,是@RequestMapping(method =
RequestMethod.GET)的缩写。该注解将HTTP Get 映射到 特定的处理方法上。
同理PostMapping也是一个组合注解,是@RequestMapping(method =
RequestMethod.POST)的缩写。
特别说明,@RequestMapping如果没有指定请求方式,将接收Get、Post、He
原创
2020-08-18 18:44:31 ·
405 阅读 ·
0 评论