@RequestMapping、@GetMapping、@PostMapping的区别

@RequestMapping:可以接受get和request请求,以及其他请求
@GetMapping:@RequestMapping(method = RequestMethod.GET)的缩写,只能接收get请求
@PostMapping:@RequestMapping(method = RequestMethod.POST)的缩写,只能接收post请求

发布了177 篇原创文章 · 获赞 24 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/qq_42449963/article/details/105165631