其他分享
首页 > 其他分享> > get、post、getMapping、postMapping、requestMapping区别

get、post、getMapping、postMapping、requestMapping区别

作者:互联网

getMapping、postMapping和requestMapping区别

@RequestMapping(method = RequestMethod.GET)

说明@GetMapping就是@RequestMapping附加了get请求方法

@PostMapping同理如上,就是附加了post请求方法

什么时候使用

本质上还是Get和Post请求的区别

GET和POST两种方法都是将数据送到服务器

若符合下列任一情况,则用POST方法:

​ 若符合下列任一情况,则用GET方法:

标签:requestMapping,GET,get,PostMapping,GetMapping,postMapping,id,请求
来源: https://blog.csdn.net/weixin_44292560/article/details/120229551