SpringMvc中,RequestMethod可以同时支持POST GET访问么?(二)
一、POST访问
@RequestMapping(value="/subscribe/getSubscribeList/{customerCode}/{sid}/{userId}",method = RequestMethod.POST)
二、GET访问
@RequestMapping(value="/subscribe/getAllSubscribeItemList/{customerCode}/{sid}/{userId}",method = RequestMethod.GET)
三、同时支持POST访问和GET访问
@RequestMapping(value="/subscribe/getSubscribeList/{customerCode}/{sid}/{userId}")
post和get的区别:
http://www.techweb.com.cn/network/system/2016-10-11/2407736.shtml
本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!
