zoukankan      html  css  js  c++  java
  • @pathVariable的作用(二十二)

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

      1. @Controller  
      2. public class TestController {  
      3.      @RequestMapping(value="/user/{userId}/roles/{roleId}",method = RequestMethod.GET)  
      4.      public String getLogin(@PathVariable("userId") String userId,  
      5.          @PathVariable("roleId") String roleId){  
      6.          System.out.println("User Id : " + userId);  
      7.          System.out.println("Role Id : " + roleId);  
      8.          return "hello";  
      9.      }  
      10.      @RequestMapping(value="/product/{productId}",method = RequestMethod.GET)  
      11.      public String getProduct(@PathVariable("productId") String productId){  
      12.            System.out.println("Product Id : " + productId);  
      13.            return "hello";  
      14.      }  
      15.      @RequestMapping(value="/javabeat/{regexp1:[a-z-]+}",  
      16.            method = RequestMethod.GET)  
      17.      public String getRegExp(@PathVariable("regexp1") String regexp1){  
      18.            System.out.println("URI Part 1 : " + regexp1);  
      19.            return "hello";  
      20.      }  
  • 相关阅读:
    new function
    Confluence5.1 最新版的安装&破解&汉化
    ganglia 启动命令
    ganglia Web前端清除当机节点
    git初始化
    递归算法的时间复杂度分析
    tcp dump 截取http
    java.io.Serializable浅析
    java 复用类的三种方式区别 组合,继承,代理的区别
    Linux netstat命令详解
  • 原文地址:https://www.cnblogs.com/MaxElephant/p/8176997.html
Copyright © 2011-2022 走看看