码迷,mamicode.com
首页 > 编程语言 > 详细

Spring MVC @PathVariable注解

时间:2018-04-09 17:21:47      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:sys   public   map   参数   string   ret   www   color   nbsp   

下面用代码来演示@PathVariable传参方式

@RequestMapping("/user/{id}")
public String test(@PathVariable("id") Integer id){
     System.out.println(id);
     return "hello";
 }

  在@RequestMapping中请求路径,将需要传递的参数用{}括起来。通过@PathVariable("参数名称")来获取url中的参数值。要求@PathVariable中参数名称必须和url中参数名称一致

 

  例如:访问  /user/1          ------------  对应id=1

        /user/2           ------------  对应id=2

 

本文转自:http://www.cnblogs.com/caoyc/p/5635300.html

Spring MVC @PathVariable注解

标签:sys   public   map   参数   string   ret   www   color   nbsp   

原文地址:https://www.cnblogs.com/jasonZh/p/8760926.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!