springMVC注解中之@RequestMapping注解及常用参数

来源:互联网 发布:举牌软件下载 编辑:程序博客网 时间:2024/05/16 07:34
  1. package cn.hive.action;  
  2.   
  3. import org.springframework.stereotype.Controller;  
  4. import org.springframework.web.bind.annotation.PathVariable;  
  5. import org.springframework.web.bind.annotation.RequestMapping;  
  6. import org.springframework.web.bind.annotation.RequestParam;  
  7.   
  8. /** 
  9.  * Created with IntelliJ IDEA. 
  10.  * Author: DAX 
  11.  * Date: 2016/10/13 
  12.  * 测试action类  
  13.  * Time: 20:08 
  14.  */  
  15.   
  16. @Controller  
  17. @RequestMapping(value = "/{abc}")  
  18. public class InitAction {  
  19.     /* 
  20.      *  @RequestMapping  value  和params 的详解 
  21.      * 
  22.      * 
  23.      * 如类没有定义请求映射 类方法中的value代表根路径  如果在类方法中有点类似于struts中 action的id 
  24.      * params 为请求参数的数组 支持一些简单的表达式      params={"!id","name!=James"}  表示不能带名称为id的参数  而且name的值不能为James  等等表达式    
  25.      * 
  26.      * @RequestMapping(value = "/init", params = {"id=myValue"}) 只有存在了请求参数id=myValue  /init.action?id=myValue 才会被initData处理 
  27.      * @RequestMapping(value = "/init", params = {"name=kobe", "number=23"}) /init.action?name=kobe&&number=23 否则 404错误 
  28.      * 
  29.      * 一旦abc  init  为占位符即用{}包括起来 该请求默认为下面 
  30.      * http://localhost:8080/abc/init.action 
  31.      * 如果被赋值  例如  abc = "hello";   init = "world";  则下面网址也可以访问ininData方法 
  32.      * http://localhost:8080/hello/world.action 
  33.      * 这形成了具有REST(表现层状态转化)风格的请求形式  表示 abc 的id为 init的实际赋值 但是请求的方法必须为GET 
  34.      * 
  35.      * @RequestParam 详解  接收 请求参数 
  36.      * required参数默认为false   表示   可以为空 
  37.      * 如果为 数据的基本类型     一旦没有赋值  提交  会被赋值null 
  38.      * 抛出异常 一般推荐用包装类 来接收  比如  int  用 Integer   double  用Double  等 
  39.      */  
  40.     @RequestMapping(value = "/{init}")  
  41.     public String initData(@PathVariable("abc") String abc, @PathVariable("init") String init, @RequestParam(value = "name", required = false) String name, @RequestParam(value = "age", required = false) Integer age) {  
  42.         abc = "hello";  
  43.         init = "world";  
  44.         System.out.println(name + age);  
  45.         return "test";  
  46.     }  
  47.   

  1. }  

value的uri值为以下三类:

A) 可以指定为普通的具体值;

B)  可以指定为含有某变量的一类值(URI Template Patterns with Path Variables);

C) 可以指定为含正则表达式的一类值( URI Template Patterns with Regular Expressions);




阅读全文
0 0