欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  Java

对比比较@RequestParam与@PathVariable的用法区别

程序员文章站 2022-05-03 21:55:15
...
在spring MVC中,两者的作用都是将request里的参数的值绑定到contorl里的方法参数里的,区别在于,URL写法不同。

使用@RequestParam时,URL是这样的:http://host:port/path?参数名=参数值

使用@PathVariable时,URL是这样的:http://host:port/path/参数值

例如:

[java] view plain copy
  1. @RequestMapping(value="/user",method = RequestMethod.GET)

  2. public @ResponseBody

  3. User printUser(@RequestParam(value = "id", required = false, defaultValue = "0")

  4. int id) {

  5. User user = new User();

  6. user = userService.getUserById(id);

  7. return user;

  8. }

  9. @RequestMapping(value="/user/{id:\\d+}",method = RequestMethod.GET)

  10. public @ResponseBody

  11. User printUser2(@PathVariable int id) {

  12. User user = new User();

  13. user = userService.getUserById(id);

  14. return user;

  15. }


上面两个方法,访问路径分别如下:

对比比较@RequestParam与@PathVariable的用法区别

对比比较@RequestParam与@PathVariable的用法区别

以上就是对比比较@RequestParam与@PathVariable的用法区别的详细内容,更多请关注其它相关文章!