- 浏览: 624983 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (819)
- java开发 (110)
- 数据库 (56)
- javascript (30)
- 生活、哲理 (17)
- jquery (36)
- 杂谈 (15)
- linux (62)
- spring (52)
- kafka (11)
- http协议 (22)
- 架构 (18)
- ZooKeeper (18)
- eclipse (13)
- ngork (2)
- dubbo框架 (6)
- Mybatis (9)
- 缓存 (28)
- maven (20)
- MongoDB (3)
- 设计模式 (3)
- shiro (10)
- taokeeper (1)
- 锁和多线程 (3)
- Tomcat7集群 (12)
- Nginx (34)
- nodejs (1)
- MDC (1)
- Netty (7)
- solr (15)
- JSON (8)
- rabbitmq (32)
- disconf (7)
- PowerDesigne (0)
- Spring Boot (31)
- 日志系统 (6)
- erlang (2)
- Swagger (3)
- 测试工具 (3)
- docker (17)
- ELK (2)
- TCC分布式事务 (2)
- marathon (12)
- phpMyAdmin (12)
- git (3)
- Atomix (1)
- Calico (1)
- Lua (7)
- 泛解析 (2)
- OpenResty (2)
- spring mvc (19)
- 前端 (3)
- spring cloud (15)
- Netflix (1)
- zipkin (3)
- JVM 内存模型 (5)
- websocket (1)
- Eureka (4)
- apollo (2)
- idea (2)
- go (1)
- 业务 (0)
- idea开发工具 (1)
最新评论
-
sichunli_030:
对于频繁调用的话,建议采用连接池机制
配置TOMCAT及httpClient的keepalive以高效利用长连接 -
11想念99不见:
你好,我看不太懂。假如我的项目中会频繁调用rest接口,是要用 ...
配置TOMCAT及httpClient的keepalive以高效利用长连接
什么是REST?首先来段介绍吧。
REST: 即 Representational State Transfer。 (资源)表现层状态转化。 是目前最流行的一种互联网软件架构。它结构清晰、符合标准、易于理解、 扩展方便,所以正得到越来越多网站的采用。
资源(Resources) : 网络上的一个实体,或者说是网络上的一个具体信息。它可以是一段文本、一张图片、一首歌曲、一种服务, 总之就是一个具体的存在。可以用一个URI(统一资源定位符)指向它, 每种资源对应一个特定的 URI 。 要获取这个资源, 访问它的URI就可以, 因此 URI 即为每一个资源的独一无二的识别符。
表现层(Representation) : 把资源具体呈现出来的形式,叫做它的表现层(Representation) 。比如,文本可以用 txt 格式表现,也可以用 HTML 格式、 XML 格式、 JSON 格式表现,甚至可以采用二进制格式。
状态转化(State Transfer) : 每发出一个请求, 就代表了客户 端和服务器的一次交互过程。 HTTP协议,是一个无状态协议,即所有的状态都保存在服务器端。因此, 如果客户端想要操作服务器,必须通过某种手段, 让服务器端发生“
状态转化”(State Transfer)。而这种转化是建立在表现层之上的,所以就是 “表现层状态转化”。 具体说, 就是 HTTP 协议里面,四个表示操作方式的动词: GET、 POST、 PUT、 DELETE。它们分别对应四种基本操作: GET 用来获取资源, POST 用来新建资源, PUT 用来更新资源, DELETE 用来删除资源。(本文出自:http://my.oschina.net/happyBKs/blog/416994)
示例:
– /order/1 HTTP GET : 得到 id = 1 的 order
– /order/1 HTTP DELETE: 删除 id = 1 的 order
– /order/1 HTTP PUT:更新id = 1 的 order
– /order HTTP POST:新增 order
但是要用spring实现四个方法需要一个过滤器:
HiddenHttpMethodFilter: 浏览器 form 表单只支持 GET与 POST 请求,而DELETE、 PUT 等 method 并不支持, Spring3.0 添加了一个过滤器,可以将这些请求转换为标准的 http 方法,使得支持 GET、 POST、 PUT 与DELETE 请求。
带占位符的 URL 是 Spring3.0 新增的功能, 该功能在SpringMVC 向 REST 目 标挺进发展过程中具有里程碑的意义。
通过 @PathVariable 可以将 URL 中占位符参数绑定到控制器处理方法的入参中: URL 中的 {xxx} 占位符可以通过@PathVariable("xxx") 绑定到操作方法的入参中。
好吧,话不多说,我们实际操练一下,在webapp目录下的原web.xml中添加HiddenHttpMethodFilter过滤器
springMVC.xml与之前的文章中的例子相比,没有变化,这里为了读者方便也一起给出,关于springMVC的项目结构和配置请参照我之前的文章。
接下来写控制器类及其方法,来负责接收和处理请求:RestTestHandler类
请求页面编写如下:
注意到了吗?HiddenHttpMethodFilter帮助我们实现对put请求和delete请求的模拟。它会将带有隐藏域_method的POST请求转换为put请求和delete请求提交给服务器。
过程:
点击四个链接和表单按钮:
控制台输入为:
总结:
Rest 风格的Url 原先利用请求参数的风格
* 以CRUD为例
* 新增: /order POST
* 修改:/order/1 Put update?id=1
* 获取:/order/1 GET get?id=1
* 删除:/order/1 DELETEdelete?id=1
* 如何发送PUT请求和DELETE请求?
1.需要配置HiddenHttpMethodFilter
2.需要发送POST请求
3.需要在发送POST请求时携带一个name=”_method“的隐藏域,值为DELETE或PUT
* 在SpringMVC的目标方法中如何得到id呢?
使用@PathVariable注解
转自:http://bbs.it-home.org/thread-45619-1-1.html
REST: 即 Representational State Transfer。 (资源)表现层状态转化。 是目前最流行的一种互联网软件架构。它结构清晰、符合标准、易于理解、 扩展方便,所以正得到越来越多网站的采用。
资源(Resources) : 网络上的一个实体,或者说是网络上的一个具体信息。它可以是一段文本、一张图片、一首歌曲、一种服务, 总之就是一个具体的存在。可以用一个URI(统一资源定位符)指向它, 每种资源对应一个特定的 URI 。 要获取这个资源, 访问它的URI就可以, 因此 URI 即为每一个资源的独一无二的识别符。
表现层(Representation) : 把资源具体呈现出来的形式,叫做它的表现层(Representation) 。比如,文本可以用 txt 格式表现,也可以用 HTML 格式、 XML 格式、 JSON 格式表现,甚至可以采用二进制格式。
状态转化(State Transfer) : 每发出一个请求, 就代表了客户 端和服务器的一次交互过程。 HTTP协议,是一个无状态协议,即所有的状态都保存在服务器端。因此, 如果客户端想要操作服务器,必须通过某种手段, 让服务器端发生“
状态转化”(State Transfer)。而这种转化是建立在表现层之上的,所以就是 “表现层状态转化”。 具体说, 就是 HTTP 协议里面,四个表示操作方式的动词: GET、 POST、 PUT、 DELETE。它们分别对应四种基本操作: GET 用来获取资源, POST 用来新建资源, PUT 用来更新资源, DELETE 用来删除资源。(本文出自:http://my.oschina.net/happyBKs/blog/416994)
示例:
– /order/1 HTTP GET : 得到 id = 1 的 order
– /order/1 HTTP DELETE: 删除 id = 1 的 order
– /order/1 HTTP PUT:更新id = 1 的 order
– /order HTTP POST:新增 order
但是要用spring实现四个方法需要一个过滤器:
HiddenHttpMethodFilter: 浏览器 form 表单只支持 GET与 POST 请求,而DELETE、 PUT 等 method 并不支持, Spring3.0 添加了一个过滤器,可以将这些请求转换为标准的 http 方法,使得支持 GET、 POST、 PUT 与DELETE 请求。
带占位符的 URL 是 Spring3.0 新增的功能, 该功能在SpringMVC 向 REST 目 标挺进发展过程中具有里程碑的意义。
通过 @PathVariable 可以将 URL 中占位符参数绑定到控制器处理方法的入参中: URL 中的 {xxx} 占位符可以通过@PathVariable("xxx") 绑定到操作方法的入参中。
好吧,话不多说,我们实际操练一下,在webapp目录下的原web.xml中添加HiddenHttpMethodFilter过滤器
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" > <web-app> <display-name>Archetype Created Web Application</display-name> <!-- 配置 org.springframework.web.filter.HiddenHttpMethodFilter,可以吧POST请求转换为PUT或DELETE请求--> <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> <!-- 配置DispatcherServlet --> <!-- 下面的代码为STS自动生成,如果是一般的eclipse需要安装springIDE插件 --> <!-- The front controller of this Spring Web application, responsible for handling all application requests --> <servlet> <servlet-name>springDispatcherServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <!-- 配置DispatcherServlet的一个初始化参数:配置springmvc 配置位置和名称 --> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:springmvc.xml</param-value><!-- classpath下的springmvc.xml --> </init-param> <!-- load-on-startup是指这个servlet是在当前web应用被加载的时候就被创建,而不是第一次被请求的时候被创建 --> <load-on-startup>1</load-on-startup> </servlet> <!-- Map all requests to the DispatcherServlet for handling /代表可以应答所有请求,由springDispatcherServlet处理 --> <servlet-mapping> <servlet-name>springDispatcherServlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
springMVC.xml与之前的文章中的例子相比,没有变化,这里为了读者方便也一起给出,关于springMVC的项目结构和配置请参照我之前的文章。
<?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" xmlns:mvc="http://www.springframework.org/schema/mvc" 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.1.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd"> <!-- 配置自动扫描的包 --> <context:component-scan base-package="com.happyBKs.springmvc.handlers"></context:component-scan> <!-- 配置视图解析器:如何把handler方法 的返回值 解析为 实际的物理视图--> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/views/"></property> <property name="suffix" value=".jsp"></property> </bean> </beans>
接下来写控制器类及其方法,来负责接收和处理请求:RestTestHandler类
package com.happyBKs.springmvc.handlers; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; @RequestMapping("/rest") @Controller public class RestTestHandler { /* * Rest 风格的Url 原先利用请求参数的风格 * 以CRUD为例 * 新增: /order POST * 修改:/order/1 Put update?id=1 * 获取:/order/1 GET get?id=1 * 删除:/order/1 DELETE delete?id=1 * * 如何发送PUT请求和DELETE请求? * 1.需要配置HiddenHttpMethodFilter * 2.需要发送POST请求 * 3.需要在发送POST请求时携带一个name=”_method“的隐藏域,值为DELETE或PUT * * 在SpringMVC的目标方法中如何得到id呢? * 使用@PathVariable注解 */ @RequestMapping(value="/methodstest/{id}",method=RequestMethod.GET) public String restGet(@PathVariable int id)//当@PathVariable没有标明{id}, { System.out.println("get "+id); System.out.println("querry operations..."); return "querry"; } @RequestMapping(value="/methodstest",method=RequestMethod.POST) public String restPost() { System.out.println("post "); System.out.println("post operations..."); return "post"; } @RequestMapping(value="/methodstest/{id}",method=RequestMethod.PUT) public String restPut(@PathVariable int id) { System.out.println("put "+id); System.out.println("put operations..."); return "put"; } @RequestMapping(value="/methodstest/{id}",method=RequestMethod.DELETE) public String restDelete(@PathVariable int id) { System.out.println("delete "+id); System.out.println("delete operations..."); return "delete"; } }
请求页面编写如下:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Insert title here</title> </head> <body> <a href="rest/methodstest/1">GET Request</a> <form action="rest/methodstest" method="post"> <input type="submit" value="POST Request" /> </form> <form action="rest/methodstest/1" method="post"> <input type="hidden" name="_method" value="PUT"> <input type="submit" value="PUT Request" /> </form> <form action="rest/methodstest/1" method="post"> <input type="hidden" name="_method" value="DELETE"> <input type="submit" value="DELETE Request" /> </form> </body> </html>
注意到了吗?HiddenHttpMethodFilter帮助我们实现对put请求和delete请求的模拟。它会将带有隐藏域_method的POST请求转换为put请求和delete请求提交给服务器。
过程:
点击四个链接和表单按钮:
控制台输入为:
get 1 querry operations... post post operations... put 1 put operations... delete 1 delete operations..
总结:
Rest 风格的Url 原先利用请求参数的风格
* 以CRUD为例
* 新增: /order POST
* 修改:/order/1 Put update?id=1
* 获取:/order/1 GET get?id=1
* 删除:/order/1 DELETEdelete?id=1
* 如何发送PUT请求和DELETE请求?
1.需要配置HiddenHttpMethodFilter
2.需要发送POST请求
3.需要在发送POST请求时携带一个name=”_method“的隐藏域,值为DELETE或PUT
* 在SpringMVC的目标方法中如何得到id呢?
使用@PathVariable注解
转自:http://bbs.it-home.org/thread-45619-1-1.html
发表评论
-
TransactionalEventListener注解
2021-07-04 12:14 1118TransactionalEventListener注解 记 ... -
Spring核心之bean
2021-06-16 13:49 208Spring Aop介绍 AOP,确实难,会让很多人懵逼 ... -
不使用@EnableTransactionManagement注解就能使用事务
2021-06-13 11:03 463https://blog.csdn.net/weixin_38 ... -
spring4.1.8扩展实战之三
2019-01-03 23:35 410spring4.1.8扩展实战之三:广播与监听 https:/ ... -
Spring装配Bean的过程
2018-03-22 20:40 346(spring-第1回【IoC基础篇】)Spring容器中Be ... -
第三章 DispatcherServlet详解 ——跟开涛学SpringMVC
2018-03-20 19:54 480http://jinnianshilongnian.iteye ... -
Spring事件机制
2017-10-26 22:56 343Spring事件机制的简单例子 http://blog.cs ... -
Spring3.1新属性管理API:PropertySource、Environment、Profile
2017-09-06 20:17 428http://jinnianshilongnian.iteye ... -
FactoryBean的实现原理与作用
2017-09-05 20:50 0FactoryBean的实现原理与作用 http://blog ... -
@Inject和@Autowired以及@Resource区别
2017-08-21 15:52 726@value 注解配置默认值 但是,如果配置文件中没有设置 n ... -
通过Spring @PostConstruct 和 @PreDestroy 方法 实现初始化和销毁bean之前进行的操作
2017-08-02 09:51 540关于在spring 容器初始化 bean 和销毁前所做的操作 ... -
Spring HttpInvoker远程调用的例子
2017-07-20 19:42 401http://blog.csdn.net/liuhui_306 ... -
spring 获取bean的几种方式
2017-07-20 17:36 398http://www.cnblogs.com/luoluosh ... -
一句话概括下spring框架及spring cloud框架主要组件
2017-07-19 16:56 44作为java的屌丝,基本上 ... -
AOP日志,记录调用类、方法、方法参数名称、方法参数值(包括对象和基本类型)
2017-07-15 19:15 2238http://blog.csdn.net/paincupid/ ... -
spring mvc Controller中使用@Value无法获取属性值
2017-06-28 17:14 961http://www.cnblogs.com/xianan87 ... -
4种方法让SpringMVC接收多个对象
2017-06-06 11:23 525http://blog.csdn.net/lutinghuan ... -
springmvc在普通类中获取HttpServletRequest对象
2017-05-25 17:18 727https://stackoverflow.com/quest ... -
spring的配置文件中mvc:view-controller path使用方法
2017-05-14 13:11 872[list] 1、重定向 <mvc:view-contr ... -
warning no match for this type name: com.cloud.access.web [Xlint:invalidA
2017-02-27 08:47 1520warning no match for this type ...
相关推荐
尚硅谷SpringMVC笔记
springmvc 笔记
在"狂神说springmvc笔记.zip"这个压缩包中,我们可以期待找到关于SpringMVC的详细讲解和实践示例。 1. **SpringMVC架构**: SpringMVC的核心组件包括DispatcherServlet、HandlerMapping、HandlerAdapter、...
SpringMVC笔记,记录的比较完整,参考价值较高,大家共同进步
《尚硅谷SpringMVC部分全套教学文档笔记》涵盖了SpringMVC框架的核心概念和技术,通过一系列章节深入浅出地讲解了SpringMVC的各个方面。以下是基于这些文档内容的详细知识点总结: 1. **SpringMVC概述与HelloWorld*...
尚硅谷SpringMVC笔记,整理自用,md格式
自己做的Spring+Mybatis+SpringMVC笔记------------------------------------------------------------------------------------------------------------------------ QQ:1017834057
springmvc笔记,非常非常的详细,教科书式的教程啊啊啊啊啊
7. 前端控制器请求视图解析器(ViewResolver)去解析视图。 8. 视图解析器向前端控制器返回View。 9. 前端控制器进行视图渲染,将模型数据填充到request域。 10. 前端控制器向用户响应结果。 #### 核心组件 - **...
《黑马程序员SpringMVC课堂笔记》是一份详细记录了SpringMVC框架学习过程的资料,主要针对Java EE开发者,特别是那些希望通过黑马程序员的教程来提升自己SpringMVC技能的学员。SpringMVC作为Spring框架的重要组成...
根据SpringMVC狂神说公众号做的笔记,把他做成了md方便大家阅读
2. springmvc-servlet.xml配置文件说明:这个配置文件中需要定义组件扫描、静态资源处理、注解驱动以及视图解析器等信息。 - 组件扫描(component-scan):指定SpringMVC需要管理的包路径,它会自动扫描这些路径...
在“SpringMVC学习(一)——SpringMVC入门小程序”中,我们首先会接触到SpringMVC的基本概念。这通常包括以下几个核心组件: 1. **DispatcherServlet**:这是SpringMVC的前端控制器,负责接收HTTP请求,并根据配置...
对于PUT和DELETE等非标准HTTP方法,需要添加HiddenHttpMethodFilter过滤器,并在表单中添加隐藏域来模拟这些请求。 在方法参数中,可以直接传递POJO,SpringMVC会自动将请求参数绑定到对象属性。也可以使用Servlet...
下面是SpringMVC的笔记,涵盖了SpringMVC的基础知识、配置、开发步骤、控制器、注解、类型转换等方面的内容。 Model1与Model2模型 在SpringMVC中,Model1和Model2是两种不同的模型。Model1是传统的MVC模式,...
跟视频的一模一样。md格式