RequestMapping 和 @GetMapping @PostMapping 区别

RequestMapping 和 @GetMapping @PostMapping 区别

GetMapping是一个组合注解

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

PostMapping是一个组合注解

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

猜你喜欢

转载自blog.csdn.net/qq_29225143/article/details/84582908