其实从它的命名中就差不多知道它们的区别:
@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;
}