springmvc中@PathVariable和@RequestParam的区别
1个回答
展开全部
其实从它的命名中就差不多知道它们的区别:
@PathVariable 用于获取路径中的内容
@RequestParam 用户获取请求参数的内容
比如有个请求 /test/123?method=234
=========================
后台会这样写
@RequestMethod("/test/{id}")
public void test(@PathVariable int id,@RequestParam(value = "method", required = false),String method){
这样 id = 123;
method = 234;
}
@PathVariable 用于获取路径中的内容
@RequestParam 用户获取请求参数的内容
比如有个请求 /test/123?method=234
=========================
后台会这样写
@RequestMethod("/test/{id}")
public void test(@PathVariable int id,@RequestParam(value = "method", required = false),String method){
这样 id = 123;
method = 234;
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询