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

SSM notes

时间:2017-08-10 10:30:24      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:variable   eth   use   参数   pat   method   style   roles   not   

  spring mvc中的@PathVariable是用来获得请求url中的动态参数的,十分方便,复习下: 

Java代码  收藏代码
@Controller  
public class TestController {  
     @RequestMapping(value="/user/{userId}/roles/{roleId}",method = RequestMethod.GET)  
     public String getLogin(@PathVariable("userId") String userId,  
         @PathVariable("roleId") String roleId){  
         System.out.println("User Id : " + userId);  
         System.out.println("Role Id : " + roleId);  
         return "hello";  
     }  
     @RequestMapping(value="/product/{productId}",method = RequestMethod.GET)  
     public String getProduct(@PathVariable("productId") String productId){  
           System.out.println("Product Id : " + productId);  
           return "hello";  
     }  
     @RequestMapping(value="/javabeat/{regexp1:[a-z-]+}",  
           method = RequestMethod.GET)  
     public String getRegExp(@PathVariable("regexp1") String regexp1){  
           System.out.println("URI Part 1 : " + regexp1);  
           return "hello";  
     }  
}  

 

SSM notes

标签:variable   eth   use   参数   pat   method   style   roles   not   

原文地址:http://www.cnblogs.com/chenyedev/p/7337276.html

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