码迷,mamicode.com
首页 > 编程语言 > 详细

SpringMvc笔记

时间:2017-04-08 23:42:41      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:use   目标   ble   class   variable   string   test   ram   res   

1.@RequestMapping注解可以使用如下参数:

    1,params:例如params={‘username‘,"age!=100"}表示需要usernmame并且age 属性不能等于100

    2. headers:为请求头 确定他的请求头是啥的时候才能访问headers={"Accept-lanuage=us,ZN"}

2.@PathVariable("id")实现REST风格的一步,可以将目标方法的参数中

1     @GetMapping("/test/{id}")
2     public String test(@PathVariable("id") String id){
3         return null;
4     }

3.REST风格

  

SpringMvc笔记

标签:use   目标   ble   class   variable   string   test   ram   res   

原文地址:http://www.cnblogs.com/lonecloud/p/6683484.html

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