springMVC请求注解@RequestMapping各个属性值

1、RequestMapping接口的源码

 1 public interface RequestMapping extends Annotation {
 2       // 指定映射的名称
 3     public abstract String name();
 4       // 指定请求路径的地址
 5     public abstract String[] value();
 6       // 指定请求的方式,是一个RequsetMethod数组,可以配置多个方法
 7     public abstract RequestMethod[] method();
 8       // 指定参数的类型
 9     public abstract String[] params();
10      
11     public abstract String[] headers();
12       // 指定数据请求的格式
13     public abstract String[] consumes();
14       // 指定返回的内容类型
15     public abstract String[] produces();

 

posted @ 2018-06-15 17:10  Jepson6669  阅读(271)  评论(0编辑  收藏  举报