SpringMVC学习笔记(二)Rest风格详解(解决高版本Tomcat不支持PUT、DELETE请求问题)

一、什么是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请求方式

  1. /getBook?id=1 :查询图书
  2. /deleteBook?id=1 :删除1号图书
  3. /updateBook?id=1 :更新1号图书
  4. /addBook :添加图书

REST风格请求方式

  1. /book/1GET-----查询1号图书
  2. /book/1DELETE-----删除1号图书
  3. /book/1PUT-----更新1号图书
  4. **/book ** :POST-----添加1号图书

简洁的URL提交请求,以请求方式区分对资源的操作;

页面只能发起两种请求,GETPOST


二、构建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>

那么,如何发送其他请求呢?

  1. 创建一个post类型的表单
  2. 表单项中携带一个 _method 参数
  3. 这个 _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"
在这里插入图片描述

在这里插入图片描述
觉得博主写的不错的读者大大们,可以点赞关注和收藏哦,谢谢各位!

Java学习路线目录索引
在这里插入图片描述

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值