码迷,mamicode.com
首页 > 其他好文 > 详细

@PathVariable使用

时间:2020-05-10 21:21:37      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:占位符   spring3   springmvc   ble   ring   print   ret   的区别   参数   

@PathVariable 映射 URL 绑定的占位符

带占位符的 URL 是 Spring3.0 新增的功能,该功能在SpringMVC 向 REST 目标挺进发展过程中具有里程碑的意义
通过 @PathVariable 可以将 URL 中占位符参数绑定到控制器处理方法的入参中:URL 中的 {xxx} 占位符可以通过@PathVariable(“xxx“) 绑定到操作方法的入参中。
主要是根据请求方法进行类的区别
例子:

//@PathVariable可以用来映射URL中的占位符到目标方法的参数中
@RequestMapping("/testPathVariable/{id}")
    public String testPathVariable(@PathVariable("id") Integer id)
    {
        System.out.println("testPathVariable:"+id);
        return SUCCESS;
    }

@PathVariable使用

标签:占位符   spring3   springmvc   ble   ring   print   ret   的区别   参数   

原文地址:https://www.cnblogs.com/zhengjinsheng/p/12864806.html

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