SpringMVC学习笔记

源码地址

7.1)RESTful简介

REST:Representational State Transfer,表现层资源状态转移。

7.1.1)资源

资源是一种看待服务器的方式,即,将服务器看作是由很多离散的资源组成。每个资源是服务器上一个可命名的抽象概念。因为资源是一个抽象的概念,所以它不仅仅能代表服务器文件系统中的一个文件、数据库中的一张表等等具体的东西,可以将资源设计的要多抽象有多抽象,只要想象力允许而且客户端应用开发者能够理解。与面向对象设计类似,资源是以名词为核心来组织的,首先关注的是名词。一个资源可以由一个或多个URI来标识。URI既是资源的名称,也是资源在Web上的地址。对某个资源感兴趣的客户端应用,可以通过资源的URI与其进行交互。

7.1.2)资源的表述

资源的表述是一段对于资源在某个特定时刻的状态的描述。可以在客户端-服务器端之间转移(交换)。资源的表述可以有多种格式,例如HTML/XML/JSON/纯文本/图片/视频/音频等等。资源的表述格式可以通过协商机制来确定。请求-响应方向的表述通常使用不同的格式。

7.1.3)状态转移

状态转移说的是:在客户端和服务器端之间转移(transfer)代表资源状态的表述。通过转移和操作资源的表述,来间接实现操作资源的目的。

7.2)RESTful的实现

具体说,就是 HTTP 协议里面,四个表示操作方式的动词:GET、POST、PUT、DELETE。

它们分别对应四种基本操作:GET 用来获取资源,POST 用来新建资源,PUT 用来更新资源,DELETE 用来删除资源。

REST 风格提倡 URL 地址使用统一的风格设计,从前到后各个单词使用斜杠分开,不使用问号键值对方式携带请求参数,而是将要发送给服务器的数据作为 URL 地址的一部分,以保证整体风格的一致性。

操作 传统方式 REST风格
查询操作 getUserById?id=1 user/1-->get请求方式
保存操作 saveUser user-->post请求方式
删除操作 deleteUser?id=1 deleteUser?id=1
更新操作 updateUser user-->put请求方式

7.2.1)RESTful的查询操作实现

在源码的工程 SpringMvcDemo3中,修改视图解析器springMVC.xml,代码如下:

    <!--3)配置视图控制器--><!-- path:设置处理的请求地址  view-name:设置请求地址所对应的视图名称 --><mvc:view-controller path="/" view-name="index"></mvc:view-controller><mvc:view-controller path="/test_view" view-name="test_view"></mvc:view-controller><mvc:view-controller path="/test_rest" view-name="test_rest"></mvc:view-controller><!--开启mvc的注解驱动--><mvc:annotation-driven />
</beans>

新建用户控制器UserController.java,代码如下:

@Controller
public class UserController {/*** 使用RESTFul模拟用户资源的增删改查* /user    GET     查询所有用户信息* /user/1    GET     根据用户id查询用户信息*/@RequestMapping(value = "/user", method = RequestMethod.GET)public String getAllUser(){System.out.println("查询所有用户信息");return "success";}
​@RequestMapping(value = "/user/{id}", method = RequestMethod.GET)public String getUserById(){System.out.println("根据id查询用户信息");return "success";}
}

新建页面test_rest.html,代码如下:

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head><meta charset="UTF-8"><title>Title</title>
</head>
<body>
<h1>RESTful示例</h1>
<a th:href="@{/user}">查询所有用户信息</a><br>
<a th:href="@{/user/1}">根据id查询用户信息</a><br>
</body>
</html>

测试:【配置Tomacat后启动工程,浏览器访问:http://localhost:8080/SpringMvcDemo3/test_rest】,点击超链接“查询所有用户信息”,页面跳转至:http://localhost:8080/SpringMvcDemo3/user,页面如下:

控制台输出:

11:16:43.746 [http-nio-8080-exec-10] DEBUG org.springframework.web.servlet.DispatcherServlet - GET "/SpringMvcDemo3/user", parameters={}
11:16:43.756 [http-nio-8080-exec-10] DEBUG org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping - Mapped to com.study.mvc.controller.UserController#getAllUser()
查询所有用户信息
11:16:43.917 [http-nio-8080-exec-10] DEBUG org.springframework.web.servlet.DispatcherServlet - Completed 200 OK

点击超链接“根据id查询用户信息”,页面跳转至:http://localhost:8080/SpringMvcDemo3/user/1,页面如下:

控制台输出:

11:18:33.397 [http-nio-8080-exec-6] DEBUG org.springframework.web.servlet.DispatcherServlet - GET "/SpringMvcDemo3/user/1", parameters={}
11:18:33.398 [http-nio-8080-exec-6] DEBUG org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping - Mapped to com.study.mvc.controller.UserController#getUserById()
根据id查询用户信息
11:18:33.401 [http-nio-8080-exec-6] DEBUG org.springframework.web.servlet.DispatcherServlet - Completed 200 OK

7.2.2)RESTful的保存操作实现

修改用户控制器UserController.java,代码如下:

    @RequestMapping(value = "/user", method = RequestMethod.POST)public String insertUser(String username, String password){System.out.println("添加用户信息:"+username+","+password);return "success";}

修改页面test_rest.html,代码如下:

<form th:action="@{/user}" method="post">用户名:<input type="text" name="username"><br>密码:<input type="password" name="password"><br><input type="submit" value="添加"><br>
</form>

测试:【配置Tomacat后启动工程,浏览器访问:http://localhost:8080/SpringMvcDemo3/test_rest】,输入表单信息点击“添加”按钮,页面跳转至:http://localhost:8080/SpringMvcDemo3/user,页面如下:

控制台输出:

11:28:17.061 [http-nio-8080-exec-10] DEBUG org.springframework.web.servlet.DispatcherServlet - POST "/SpringMvcDemo3/user", parameters={masked}
11:28:17.073 [http-nio-8080-exec-10] DEBUG org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping - Mapped to com.study.mvc.controller.UserController#insertUser(String, String)
添加用户信息:admin,3457675
11:28:17.217 [http-nio-8080-exec-10] DEBUG org.springframework.web.servlet.DispatcherServlet - Completed 200 OK

7.2.3)RESTful的更新操作实现

修改用户控制器UserController.java,代码如下:

    @RequestMapping(value = "/user", method = RequestMethod.PUT)public String updateUser(String username, String password) {System.out.println("修改用户信息:" + username + "," + password);return "success";}

修改页面test_rest.html,代码如下:

<form th:action="@{/user}" method="put">用户名:<input type="text" name="username"><br>密码:<input type="password" name="password"><br><input type="submit" value="修改"><br>
</form>

测试:【配置Tomacat后启动工程,浏览器访问:http://localhost:8080/SpringMvcDemo3/test_rest】,输入表单信息点击“修改”按钮,页面跳转至:http://localhost:8080/SpringMvcDemo3/user?username=admin1&password=21353432,页面如下:

控制台输出:【虽然页面执行更新方法put,但实际执行是查询方法get】

12:44:59.379 [http-nio-8080-exec-4] DEBUG org.springframework.web.servlet.DispatcherServlet - GET "/SpringMvcDemo3/user?username=admin1&password=21353432", parameters={masked}
12:44:59.379 [http-nio-8080-exec-4] DEBUG org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping - Mapped to com.study.mvc.controller.UserController#getAllUser()
查询所有用户信息
12:44:59.382 [http-nio-8080-exec-4] DEBUG org.springframework.web.servlet.DispatcherServlet - Completed 200 OK

由于浏览器只支持发送get和post方式的请求,发送put和delete请求会默认执行get请求,为执行put和delete请求SpringMVC 提供了 HiddenHttpMethodFilter

7.2.3.1)HiddenHttpMethodFilter

SpringMVC 提供了 HiddenHttpMethodFilter将 POST 请求转换为 DELETE 或 PUT 请求;

HiddenHttpMethodFilter处理put和delete请求的条件:

  1. 当前请求的请求方式必须为post

  2. 当前请求必须传输请求参数_method

满足以上条件,HiddenHttpMethodFilter 过滤器就会将当前请求的请求方式转换为请求参数_method的值,因此请求参数_method的值才是最终的请求方式,在web.xml中注册HiddenHttpMethodFilter,代码如下:

    <!--1)配置编码过滤器--><filter><filter-name>CharacterEncodingFilter</filter-name><filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class><init-param><param-name>encoding</param-name><param-value>UTF-8</param-value></init-param><init-param><param-name>forceResponseEncoding</param-name><param-value>true</param-value></init-param></filter><filter-mapping><filter-name>CharacterEncodingFilter</filter-name><url-pattern>/*</url-pattern></filter-mapping>
​<!--2)配置请求方式过滤器HiddenHttpMethodFilter--><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>

目前为止,SpringMVC中提供了两个过滤器:CharacterEncodingFilter和HiddenHttpMethodFilter

在web.xml中注册时,必须先注册CharacterEncodingFilter,再注册HiddenHttpMethodFilter

原因:

  • 在 CharacterEncodingFilter 中通过 request.setCharacterEncoding(encoding) 方法设置字符集的

    request.setCharacterEncoding(encoding) 方法要求前面不能有任何获取请求参数的操作;

  • 而 HiddenHttpMethodFilter 恰恰有一个获取请求方式的操作:

String paramValue = request.getParameter(this.methodParam);

修改页面test_rest.html,代码如下:

<form th:action="@{/user}" method="post"><input type="hidden" name="_method" value="PUT">用户名:<input type="text" name="username"><br>密码:<input type="password" name="password"><br><input type="submit" value="修改"><br>
</form>

测试:页面再次执行上述更新操作,控制台输出:【页面执行更新方法put,实际执行也为更新方法put】

12:53:26.668 [http-nio-8080-exec-9] DEBUG org.springframework.web.servlet.DispatcherServlet - PUT "/SpringMvcDemo3/user", parameters={masked}
12:53:26.674 [http-nio-8080-exec-9] DEBUG org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping - Mapped to com.study.mvc.controller.UserController#updateUser(String, String)
修改用户信息:admin1,21353432
12:53:26.849 [http-nio-8080-exec-9] DEBUG org.springframework.web.servlet.DispatcherServlet - Completed 200 OK

7.2.4)RESTful的删除操作实现

修改用户控制器UserController.java,代码如下:

    @RequestMapping(value = "/user", method = RequestMethod.DELETE)public String deleteUser(String username, String password) {System.out.println("删除用户信息:" + username + "," + password);return "success";}

修改页面test_rest.html,代码如下:

<form th:action="@{/user}" method="post"><input type="hidden" name="_method" value="DELETE">用户名:<input type="text" name="username"><br>密码:<input type="password" name="password"><br><input type="submit" value="删除"><br>
</form>

测试:【配置Tomacat后启动工程,浏览器访问:http://localhost:8080/SpringMvcDemo3/test_rest】,输入表单信息点击“删除”按钮,页面跳转至:http://localhost:8080/SpringMvcDemo3/user,页面如下:

控制台输出:【页面执行删除方法delete,实际执行也为删除方法delete】

13:01:10.693 [http-nio-8080-exec-7] DEBUG org.springframework.web.servlet.DispatcherServlet - DELETE "/SpringMvcDemo3/user", parameters={masked}
13:01:10.695 [http-nio-8080-exec-7] DEBUG org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping - Mapped to com.study.mvc.controller.UserController#deleteUser(String, String)
删除用户信息:admin3,2311241
13:01:10.841 [http-nio-8080-exec-7] DEBUG org.springframework.web.servlet.DispatcherServlet - Completed 200 OK

SpringMVC(07) -- RESTful相关推荐

  1. restful post请求_猿蜕变9——一文搞定SpringMVC的RESTFul套路

    看过之前的蜕变系列文章,相信你对springMVC有了一定的认识.对springMVC的Interceptor拦截器,也有了一定的认识.今天我们来开启新讨论,讲一讲springMVC对那一种休闲风的支 ...

  2. SpringMVC响应Restful风格请求404

    一.问题 在学习Springmvc时,使用Restful风格的url,页面提示404错误.为找到原因,编写一个简单的Restful测试用例如下: jsp页面: <a href="use ...

  3. springmvc教程--RESTful支持详解

    RESTful支持 1.1 需求 RESTful方式商品修改.商品查询. 1.2 添加DispatcherServlet的rest配置 <servlet><servlet-name& ...

  4. SpringMVC中RestFul风格

    先说一下什么是RestFul风格,以一个链接为例子,如果我们访问一个网页,想要给a和b传参数,传统的方式是?a=1&b=2,而RestFul就是改变了传统的方式,用/a/1/2的形式,达到了简 ...

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

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

  6. SpringMVC 13. RESTful CRUD

    RESTful CRUD 1 前置准备 1.0 配置文件 pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" ...

  7. (SpringMVC)RestFul和Controller

    文章目录 1. 控制器Controller 1.1 实现Controller接口 1.2 使用注解@Controller 2. RestFul 风格 1. 控制器Controller 控制器复杂提供访 ...

  8. JavaWeb-RESTful_用SpringMVC开发RESTful

    RESTful简介 一种软件架构风格.设计风格,而不是标准,只是提供了一组设计原则和约束条件. 它主要用于客户端和服务器交互类的软件. 基于这个风格设计的软件可以更简洁,更有层次,更易于实现缓存等机制 ...

  9. SpringMVC实现RESTful风格

    RESTful简介   1,REST架构师一个抽象的概念,目前主要是基于HTTP协议实现,其目的是为了提高系统的可伸缩性,降低应用之间的耦合度,便于框架分布式处理程序. 2,REST主要对以下两方面进 ...

  10. springMVC与RESTful支持

    什么是restful? Restful就是一个资源定位及资源操作的风格.不是标准也不是协议,只是一种风格.基于这个风格设计的软件可以更简洁,更有层次,更易于实现缓存等机制. 资源:互联网所有的事物都可 ...

最新文章

  1. 莫比乌斯函数+莫比乌斯反演
  2. java 字符串驻留_java String 以及字符串直接量 与 字符串驻留池 ...
  3. Explain:解决MUI 软键盘弹起挤压页面问题
  4. jpa取出mysql数组_java读取数据库数据,并将数据存入数组返回
  5. 虚拟机架云服务器,云服务器 虚拟机架设
  6. python 混淆矩阵_绘制混沌矩阵
  7. rds数据加密_如何保障云上数据安全?一文详解云原生全链路加密
  8. Bash字符串处理(与Java对照) - 19.查找字符的位置
  9. LinkedList 方法知识点
  10. python输入时间限制_用Python计算用户输入时间
  11. oracle 10g 扩表空间,Oracle 10g 表空间管理(一)
  12. 一本专门解决网站可用性和易用性问题的实用书籍
  13. 「小程序JAVA实战」小程序页面的上拉下拉刷新(50)
  14. C语言 同构数的算法
  15. Matlab代码格式一键美化神器
  16. 一个网站直接跳转引起的一些思考
  17. 权限维持篇---Windows权限维持--隐藏篇
  18. 人工智能(AI)如何彻底改变项目管理
  19. python太阳花代码_python太阳花绘制代码教程
  20. 最新界面很漂亮的在线工具箱,包含站长工具箱等等功能

热门文章

  1. 【系统测试报告】苏科大App系统测试报告
  2. IMDB 5000 Movie Dataset(来自IMDB的5000个电影的数据集)
  3. shopNC注册后无法登陆的问题
  4. P1195 口袋的天空
  5. 如何把PDF转换成word呢?
  6. dwg格式转换成jpg图片
  7. 利用千人基因组数据库查看SNP在不同地区、国家、洲的频率及个数
  8. fantastic-matplotlib:案例集合:
  9. 【附源码】计算机毕业设计java学科竞赛赛场安排系统设计与实现
  10. Responses 部分 | Http Header