一、什么是REST
REST: REST是一种软件架构风格,或者说是一种规范,其强调HTTP应当以资源为中心,并且规范了URI的风格;规范了HTTP请求动作(GET/PUT/POST/DELETE/HEAD/OPTIONS)的使用,具有对应的语义。
核心概念包括:
资源(Resource):
在REST中,资源可以简单的理解为URI,表示一个网络实体。比如,/users/1/name,对应id=1的用户的属性name。既然资源是URI,就会具有以下特征:名词,代表一个资源;它对应唯一的一个资源,是资源的地址。
表现层(Representation):
是资源呈现出来的形式,比如上述URI返回的HTML或JSON,包括HTTP Header等,甚至可以采用二进制格式;
传统CRUD请求方式
- /getBook?id=1 :查询图书
- /deleteBook?id=1 :删除1号图书
- /updateBook?id=1 :更新1号图书
- /addBook :添加图书
REST风格请求方式
- /book/1 :GET-----查询1号图书
- /book/1 :DELETE-----删除1号图书
- /book/1 :PUT-----更新1号图书
- **/book ** :POST-----添加1号图书
简洁的URL提交请求,以请求方式区分对资源的操作;
页面只能发起两种请求,GET和POST
二、构建REST的CRUD环境
项目整体结构
index.jsp
<%@ 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>
<a href="book/1">查询1号图书</a>
<form action="book" method="post">
<input type="submit" value="添加图书">
</form>
<a href="book/1">删除1号图书</a><br>
<a href="book/1">更新1号图书</a>
</body>
</html>
success.jsp
<%@ 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>
<h1>成功!!!</h1>
</body>
</html>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<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_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>SpringMVC_rest</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<!-- The front controller of this Spring Web application, responsible for handling all application requests -->
<servlet>
<servlet-name>springmvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<!-- Map all requests to the DispatcherServlet for handling -->
<servlet-mapping>
<servlet-name>springmvc</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
springmvc-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<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.3.xsd">
<!-- 包扫描 -->
<context:component-scan base-package="com.dong"></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>
BookController.java
@Controller
public class BookController {
@RequestMapping(value = "/book/{bid}",method = {RequestMethod.GET})
public String getBook(@PathVariable("bid") Integer id) {
System.out.println("查询到了"+id+"号图书");
return "success";
}
@RequestMapping(value = "/book",method = {RequestMethod.POST})
public String addBook() {
System.out.println("添加了图书");
return "success";
}
@RequestMapping(value = "/book/{bid}",method = {RequestMethod.DELETE})
public String delBook(@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";
}
}
运行
上图可以看出,虽然是删除和更新,但请求方式都是get方法,所以都为查询。
三、完成REST风格的CRUD
SpringMVC中有一个Filter,它可以把普通的请求转化为对Rest风格的支持
web.xml添加过滤器
<filter>
<filter-name>HiddenHttpMethodFilter</filter-name>
<filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>HiddenHttpMethodFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
那么,如何发送其他请求呢?
- 创建一个post类型的表单
- 表单项中携带一个 _method 参数
- 这个 _method 就是DELETE、PUT
<a href="book/1">查询1号图书</a>
<form action="book" method="post">
<input type="submit" value="添加图书">
</form>
<form action="book/1" method="post">
<input hidden="true" name="_method" value="DELETE">
<input type="submit" value="删除图书">
</form>
<form action="book/1" method=post>
<input hidden="true" name="_method" value="PUT">
<input type="submit" value="更新图书">
</form>
因为我使用的是tmocat9高版本,不接受DELETE、PUT请求
解决办法,在success.jsp添加 isErrorPage="true"
觉得博主写的不错的读者大大们,可以点赞关注和收藏哦,谢谢各位!