REST即(Representational State Transfer):(资源)表现层状态转化。是目前最流行的一种互联网软件架构。它结构清晰、符合标准、易于理解、扩展方便,正得到越来越多网站的采用。
资源(Resources)
:网络上的一个实体,或者说是网络上的一个具体信息。它可以是一段文本、一张图片、一首歌曲、一种服务,总之就是一个具体的存在。可以用一个URL(统一资源定位符)指向它,每种资源对应一个特定的URI。要获取这个资源,访问它的URi就可以,因此URI即为每一个资源的独一无二的识别符。
表现层(Representation)
:把资源具体呈现出来的形式,叫做它的表现层(Representation)。比如,文本可以用txt格式表现出来,也可以用HTML格式、XML格式、JSON格式表现,甚至可以采用二进制格式。
状态转化(State Transfer)
:每发出一个请求,就代表了客户端和服务器的一次交互过程。HTTP协议,是一个无状态协议,即所有的状态都保存在服务器端。因此,如果客户端想要操作服务器,必须通过某种手段,让服务器端发送"状态转化"(State Transfer)。而这种转化是建立在表现层之上的,所以就是"表现层状态转化"。具体说,就是HTTP协议里面,四个表示操作方式的动词:GET、POST、PUT、DELETE。它们分别对应四种基本操作:GET用来获取资源,POST用来新建资源,PUT用来更新资源,DELETE用来删除资源。
REST开发风格:以简洁的URL提交请求,以请求方式区分对资源操作。
@PathVaariable注解可以映射URL绑定的占位符。
// 路径上可以有占位符,可以在任意路径的地方写一个{变量名}
@RequestMapping("/user/{id}")
public String hello05(@PathVariable("id") String id) {
System.out.println("路径上占位符的值:" + id);
return "success";
}
实际上REST开发风格是一种很理想化的开发风格,从页面上只能发起两种请求(GET、POST),如何从页面发起PUT、DELETE请求呢?Spring提供了对Rest风格的支持。
HiddenHttpMethodFilter
:它可以把普通的请求转化为规定形式的请求。主页面,该页面包含增删改查四个操作;分别使用GET、POST、DELETE、PUT方式发送请求。
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<!-- 发起图书的增删改查(REST风格) -->
<a href="book/1">查询图书</a><br/>
<form action="book" method="post">
<input type="submit" value="添加图书"/>
</form>
<form action="book/1" method="post">
<input name="_method" value="DELETE">
<input type="submit" value="删除图书"/>
</form>
<form action="book/1" method="post">
<input name="_method" value="PUT">
<input type="submit" value="更新图书"/>
</form>
</body>
</html>
控制器中使用@PathVariable注解获取路径上的占位符。
@Controller
public class BoolController {
@RequestMapping(value = "/book/{bid}", method = RequestMethod.GET)
public String getBook(@PathVariable("bid") Integer id) {
System.out.println("查询到了" + id + "号图书");
return "success";
}
@RequestMapping(value = "/book/{bid}", method = RequestMethod.DELETE)
public String deleteBook(@PathVariable("bid") Integer id) {
System.out.println("删除了" + id + "号图书");
return "success";
}
@RequestMapping(value = "/book/{bid}", method = RequestMethod.PUT)
public String updateBook(@PathVariable("bid") Integer id) {
System.out.println("更新了" + id + "号图书");
return "success";
}
@RequestMapping(value = "/book", method = RequestMethod.POST)
public String addBook() {
System.out.println("添加了新的图书");
return "success";
}
}
配置前端控制器与HiddenHttpMethodFilter。
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>2.SpringMVC_restdisplay-name>
<welcome-file-list>
<welcome-file>index.htmlwelcome-file>
<welcome-file>index.htmwelcome-file>
<welcome-file>index.jspwelcome-file>
<welcome-file>default.htmlwelcome-file>
<welcome-file>default.htmwelcome-file>
<welcome-file>default.jspwelcome-file>
welcome-file-list>
<servlet>
<servlet-name>springmvcservlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>
<load-on-startup>1load-on-startup>
servlet>
<servlet-mapping>
<servlet-name>springmvcservlet-name>
<url-pattern>/url-pattern>
servlet-mapping>
<filter>
<filter-name>HiddenHttpMethodFilterfilter-name>
<filter-class>org.springframework.web.filter.HiddenHttpMethodFilterfilter-class>
filter>
<filter-mapping>
<filter-name>HiddenHttpMethodFilterfilter-name>
<url-pattern>/*url-pattern>
filter-mapping>
web-app>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd">
<context:component-scan base-package="com.gql">context:component-scan>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/pages/">property>
<property name="suffix" value=".jsp">property>
bean>
beans>
依次点击增删改查按钮:
每次都能成功在控制台打印信息,并跳转至Success页面。
public class HiddenHttpMethodFilter extends OncePerRequestFilter {
public static final String DEFAULT_METHOD_PARAM = "_method";
private String methodParam = DEFAULT_METHOD_PARAM;
...
@Override
protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain)
throws ServletException, IOException {
//获取表单上_method的值
String paramValue = request.getParameter(this.methodParam);
//判断如果表单的请求是POST并且_method有值
if ("POST".equals(request.getMethod()) && StringUtils.hasLength(paramValue)) {
//将_method的值转换为大写
String method = paramValue.toUpperCase(Locale.ENGLISH);
//重写了getMethod方法==PUT/delete
HttpServletRequest wrapper = new HttpMethodRequestWrapper(request, method);
filterChain.doFilter(wrapper, response);
}
//否则直接放行
else {
filterChain.doFilter(request, response);
}
}
...
}
解决方案:在JSP页面头部加上isErrorPage="true"
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8" isErrorPage="true" %>