Rest介绍

/blog/1 HTTP GET =>  得到id = 1的blog
/blog/1 HTTP DELETE => 删除 id = 1的blog
/blog/1 HTTP PUT =>  更新id = 1的blog
/blog   HTTP POST =>  新增BLOG

以下详细解一下spring rest使用.

首先,我们带着如下两个问题查看本文。

1.如何在java构造没有扩展名的RESTful url,如 /forms/1,而不是 /forms/1.do

2.浏览器的form标签不支持提交delete,put请求,如何曲线解决

springmvc rest 实现

springmvc的resturl是通过@RequestMapping 及@PathVariable annotation提供的,
    通过如@RequestMapping(value="/blog /{id}",method=RequestMethod.DELETE)即可处理/blog/1 的delete请求.

1@RequestMapping(value="/blog/{id}",method=RequestMethod.DELETE)
2public ModelAndView delete(@PathVariable Long id,HttpServletRequest request,HttpServletResponse response) {
3  blogManager.removeById(id);
4  return new ModelAndView(LIST_ACTION);
5}

@RequestMapping @PathVariable如果URL中带参数,则配合使用,如

1@RequestMapping(value="/blog/{blogId}/message/{msgId}",method=RequestMethod.DELETE)
2public ModelAndView delete(@PathVariable("blogId") Long blogId,@PathVariable("msgId") Long msgId,HttpServletRequest request,HttpServletResponse response) {
3}

1.springmvc web.xml配置

 1<!-- 该servlet为tomcat,jetty等容器提供,将静态资源映射从/改为/static/目录,如原来访问 http://localhost/foo.css ,现在http://localhost/static/foo.css -->
 2  <servlet-mapping>
 3  <servlet-name>default</servlet-name>
 4  <url-pattern>/static/*</url-pattern>
 5  </servlet-mapping>
 6  <servlet>
 7    <servlet-name>springmvc</servlet-name>
 8    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
 9    <load-on-startup>1</load-on-startup>
10  </servlet>
11
12  <!-- URL重写filter,用于将访问静态资源http://localhost/foo.css 转为http://localhost/static/foo.css -->
13  <filter>
14  <filter-name>UrlRewriteFilter</filter-name>
15  <filter-class>org.tuckey.web.filters.urlrewrite.UrlRewriteFilter</filter-class>
16  <init-param>
17     <param-name>confReloadCheckInterval</param-name>
18     <param-value>60</param-value>
19    </init-param>
20  <init-param>
21        <param-name>logLevel</param-name>
22        <param-value>DEBUG</param-value>
23      </init-param>
24  </filter>
25  <filter-mapping>
26  <filter-name>UrlRewriteFilter</filter-name>
27  <url-pattern>/*</url-pattern>
28  </filter-mapping>
29
30  <!-- 覆盖default servlet的/, springmvc servlet将处理原来处理静态资源的映射 -->
31  <servlet-mapping>
32    <servlet-name>springmvc</servlet-name>
33    <url-pattern>/</url-pattern>
34  </servlet-mapping>
35
36  <!-- 浏览器不支持put,delete等method,由该filter将/blog?_method=delete转换为标准的http delete方法 -->
37  <filter>
38  <filter-name>HiddenHttpMethodFilter</filter-name>
39  <filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class>
40  </filter>
41
42  <filter-mapping>
43  <filter-name>HiddenHttpMethodFilter</filter-name>
44  <servlet-name>springmvc</servlet-name>
45  </filter-mapping>

2.webapp/WEB-INF/springmvc-servlet.xml配置,使用如下两个class激活@RequestMapping annotation

1<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"/>   
2<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"/>  
3

3.Controller编写

 1/**
 2  * @RequestMapping("/userinfo") 具有层次关系,方法级的将在类一级@RequestMapping之一,
 3  * 如下面示例, 访问方法级别的@RequestMapping("/new"),则URL为 /userinfo/new
 4  */
 5@Controller
 6@RequestMapping("/userinfo")
 7public class UserInfoController extends BaseSpringController{
 8  //默认多列排序,example: username desc,createTime asc
 9  protected static final String DEFAULT_SORT_COLUMNS = null;
10
11  private UserInfoManager userInfoManager;
12
13  private final String LIST_ACTION = "redirect:/userinfo";
14
15  /**
16  * 通过spring自动注入
17  **/
18  public void setUserInfoManager(UserInfoManager manager) {
19  this.userInfoManager = manager;
20  }
21
22  /** 列表 */
23  @RequestMapping
24  public ModelAndView index(HttpServletRequest request,HttpServletResponse response,UserInfo userInfo) {
25  PageRequest<Map> pageRequest = newPageRequest(request,DEFAULT_SORT_COLUMNS);
26  //pageRequest.getFilters(); //add custom filters 
27
28  Page page = this.userInfoManager.findByPageRequest(pageRequest);
29  savePage(page,pageRequest,request);
30  return new ModelAndView("/userinfo/list","userInfo",userInfo);
31  }
32
33  /** 进入新增 */
34  @RequestMapping(value="/new")
35  public ModelAndView _new(HttpServletRequest request,HttpServletResponse response,UserInfo userInfo) throws Exception {
36  return new ModelAndView("/userinfo/new","userInfo",userInfo);
37  }
38
39  /** 显示 */
40  @RequestMapping(value="/{id}")
41  public ModelAndView show(@PathVariable Long id,HttpServletRequest request,HttpServletResponse response) throws Exception {
42  UserInfo userInfo = (UserInfo)userInfoManager.getById(id);
43  return new ModelAndView("/userinfo/show","userInfo",userInfo);
44  }
45
46  /** 编辑 */
47  @RequestMapping(value="/{id}/edit")
48  public ModelAndView edit(@PathVariable Long id,HttpServletRequest request,HttpServletResponse response) throws Exception {
49  UserInfo userInfo = (UserInfo)userInfoManager.getById(id);
50  return new ModelAndView("/userinfo/edit","userInfo",userInfo);
51  }
52
53  /** 保存新增 */
54  @RequestMapping(method=RequestMethod.POST)
55  public ModelAndView create(HttpServletRequest request,HttpServletResponse response,UserInfo userInfo) throws Exception {
56  userInfoManager.save(userInfo);
57  return new ModelAndView(LIST_ACTION);
58  }
59
60  /** 保存更新 */
61  @RequestMapping(value="/{id}",method=RequestMethod.PUT)
62  public ModelAndView update(@PathVariable Long id,HttpServletRequest request,HttpServletResponse response) throws Exception {
63  UserInfo userInfo = (UserInfo)userInfoManager.getById(id);
64  bind(request,userInfo);
65  userInfoManager.update(userInfo);
66  return new ModelAndView(LIST_ACTION);
67  }
68
69  /** 删除 */
70  @RequestMapping(value="/{id}",method=RequestMethod.DELETE)
71  public ModelAndView delete(@PathVariable Long id,HttpServletRequest request,HttpServletResponse response) {
72  userInfoManager.removeById(id);
73  return new ModelAndView(LIST_ACTION);
74  }
75
76  /** 批量删除 */
77  @RequestMapping(method=RequestMethod.DELETE)
78  public ModelAndView batchDelete(HttpServletRequest request,HttpServletResponse response) {
79  String[] items = request.getParameterValues("items");
80  for(int i = 0; i < items.length; i++) {
81   java.lang.Long id = new java.lang.Long(items[i]);
82   userInfoManager.removeById(id);
83  }
84  return new ModelAndView(LIST_ACTION);
85  }
86
87}
88
1/userinfo  => index()
2  /userinfo/new => _new()
3  /userinfo/{id} => show()
4  /userinfo/{id}/edit  => edit()
5  /userinfo POST => create()
6  /userinfo/{id} PUT => update()
7  /userinfo/{id} DELETE => delete()
8  /userinfo DELETE => batchDelete()
9

注(不使用 /userinfo/add  => add() 方法是由于add这个方法会被maxthon浏览器当做广告链接过滤掉,因为包含ad字符)

4.jsp 编写

1<form:form action="${ctx}/userinfo${userInfo.userId}" method="put">
2</form:form>

生成的html内容如下, 生成一个hidden的_method=put,并于web.xml中的HiddenHttpMethodFilter配合使用,在服务端将post请求改为put请求

1<form id="userInfo" action="/springmvc_rest_demo/userinfo/2" method="post">
2  <input type="hidden" name="_method" value="put"/>
3</form>

另外一种方法是你可以使用ajax发送put,delete请求.

5.静态资源的URL重写

如上我们描述,现因为将default servlet映射至/static/的子目录,现我们访问静态资源将会带一个/static/前缀.

如 /foo.gif, 现在访问该文件将是 /static/foo.gif.

那如何避免这个前缀呢,那就是应用URL rewrite,现我们使用 http://tuckey.org/urlrewrite/, 重写规则如下

1<urlrewrite>
2   <!-- 访问jsp及jspx将不rewrite url,其它.js,.css,.gif等将重写,如 /foo.gif => /static/foo.gif -->
3   <rule>
4    <condition operator="notequal" next="and" type="request-uri">.*.jsp</condition>
5    <condition operator="notequal" next="and" type="request-uri">.*.jspx</condition>
6     <from>^(/.*\..*)$</from>
7     <to>/static$1</to>
8   </rule>
9</urlrewrite>

Springmvc构造RESTful详细讲解的更多相关文章

  1. spring 3.0 应用springmvc 构造RESTful URL 详细讲解

    在线springmvc_rest demo 由于下一版本的rapid-framwork需要集成spring RESTful URL,所以研究了一下怎么搭建. 并碰到了一下问题. springmvc 3 ...

  2. Restful 介绍及SpringMVC+restful 实例讲解

    restful不是一个框架,称为一种编码更烦更贴切吧,其核心类位于spring-web.jar中,即RestTemplate.class restful是rpc通过http协议的一种实现方式,和web ...

  3. 数据结构与算法(九):AVL树详细讲解

    数据结构与算法(一):基础简介 数据结构与算法(二):基于数组的实现ArrayList源码彻底分析 数据结构与算法(三):基于链表的实现LinkedList源码彻底分析 数据结构与算法(四):基于哈希 ...

  4. python format函数/print 函数详细讲解(4)

    在python开发过程中,print函数和format函数使用场景特别多,下面分别详细讲解两个函数的用法. 一.print函数 print翻译为中文指打印,在python中能直接输出到控制台,我们可以 ...

  5. C++语言堆栈的详细讲解

    本文主要向大家介绍了C++语言堆栈的详细讲解,通过具体的内容向大家展示,希望对大家学习C++语言有所帮助. 一.预备知识—程序的内存分配 一个由c/C++编译的程序占用的内存分为以下几个部分 1.栈区 ...

  6. (转)springMVC+mybatis+ehcache详细配置

    一. Mybatis+Ehcache配置 为了提高MyBatis的性能,有时候我们需要加入缓存支持,目前用的比较多的缓存莫过于ehcache缓存了,ehcache性能强大,而且位各种应用都提供了解决方 ...

  7. head标签详细讲解

    head标签详细讲解 head位于html网页的头部,后前的标签,并以开始以结束的一html标签. Head标签位置如图: head标签示意图 head包含标签 meta,title,link,bas ...

  8. 详细讲解nodejs中使用socket的私聊的方式

    详细讲解nodejs中使用socket的私聊的方式 在上一次我使用nodejs+express+socketio+mysql搭建聊天室,这基本上就是从socket.io的官网上的一份教程式复制学习,然 ...

  9. iOS KVC详细讲解

    iOS KVC详细讲解 什么是KVC? KVC即NSKeyValueCoding,就是键-值编码的意思.一个非正式的 Protocol,是一种间接访问对象的属性使用字符串来标识属性,而不是通过调用存取 ...

随机推荐

  1. iOS 进阶 第二天(0324)

    0324 创建transform transform 是形变属性. 如下图: 如果按照上面的方法来创建的话是这样解释:是相对初始状态来说的,不会在变化后的基础上进行形变.如果要持续变化就要自己去不断改 ...

  2. python中变量

    在Python中,变量的概念基本上和初中代数的方程变量是一致的. 例如,对于方程式 y=x*x ,x就是变量.当x=2时,计算结果是4,当x=5时,计算结果是25. 只是在计算机程序中,变量不仅可以是 ...

  3. multimap和multiset 认知和使用

    之前只是在C++ Primer里面看过关联容器,可能因为没有实际用过,只是看看,所以导致用的时候并不熟悉: 在这之前,map和set的特性应该要了解,map是关联数组,也就是由键值对组成的,而set只 ...

  4. UINavigationBar导航栏相关设置

    设置导航颜色 [[UINavigationBar appearance] setBarTintColor:[UIColor colorWithRed:0 green:0 blue:0 alpha:1] ...

  5. tableView中不易被注意到的方法

    - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{ } 这个方法 在 r ...

  6. integer和double的比较.

    Integer douVal=20; double parseDouble = Double.parseDouble(douVal.toString()); System.out.println(pa ...

  7. C#中字符串驻留技术

    转自:http://www.cnblogs.com/Charles2008/archive/2009/04/12/1434115.html MSDN概念:公共语言运行库通过维护一个表来存放字符串,该表 ...

  8. NOI考前乱写

    还有13天NOI,把各种乱七八糟的算法都重新过一遍还是比较有必要的... //HDU 5046 Airport //DancingLink #include<iostream> #incl ...

  9. API断点大全

    1.限制程序功能函数 EnableMenuItem 允许.禁止或变灰指定的菜单条目EnableWindow 允许或禁止鼠标和键盘控制指定窗口和条目(禁止时菜单变灰) 2.对话框函数 CreateDia ...

  10. ppshu

    全部书籍已经下载完毕! http://3cvpkfx4gdnkcduj.onion/ https://3cvpkfx4gdnkcduj.onion.cab/ https://3cvpkfx4gdnkc ...