@ResponseBody & @RequestBody
http://www.cnblogs.com/zhaoyang/archive/2012/01/07/2315436.html
作用?
@RequestBody 将 HTTP 请求正文插入方法中,使用适合的HttpMessageConverter将请求体写入某个对象。
@ResponseBody 将内容或对象作为 HTTP 响应正文返回,使用@ResponseBody将会跳过视图处理部分,而是调用适合HttpMessageConverter,将返回值写入输出流。
HttpMessageConverter接口
<mvc:annotation-driven />开启了之后它给AnnotationMethodHandlerAdapter初始化7个转换器,可以通过调用AnnotationMethodHandlerAdapter类的getMessageConverts()方法来获取转换器的一个集合 List<HttpMessageConverter>
默认给AnnotationMethodHandlerAdapter初始化的有(当然我们也可以添加自定义的converter)
ByteArrayHttpMessageConverter
StringHttpMessageConverter
ResourceHttpMessageConverter
SourceHttpMessageConverter<T>
XmlAwareFormHttpMessageConverter
Jaxb2RootElementHttpMessageConverter
MappingJacksonHttpMessageConverter
Spring是如何寻找最佳的HttpMessageConverter
1 首先获取注册的所有HttpMessageConverter集合
2 然后客户端的请求header中寻找客户端可接收的类型,
比如 Accept application/json,application/xml等,组成一个集合
3 所有的HttpMessageConverter 都有canRead和canWrite方法 返回值都是boolean,看这个HttpMessageConverter是否支持当前请求的读与写,读对应@RequestBody注解, 写对应@ResponseBody注解
4 遍历HttpMessageConverter集合与前面获取可接受类型进行匹配,如果匹配直接使用当前第一个匹配的HttpMessageConverter,然后return(一般是通过Accept和返回值对象的类型进行匹配)
例如
StringHttpMessageConverter
支持String , Accept所有类型
MappingJacksonHttpMessageConverter
支持Map List 实体对象等等 ,Accept:application/json
示例:
目标:
使用ResponseBody根据head的Accept不同对同一地址请求分别来呈现一个实体的json与xml结果
由于<context:annotation-config />
默认会初始化AnnotationMethodHanlderAdapter,但我们返回xml内容需要对这个HandlerAdapter进行一定的修改,所以配置文件如下:
<context:component-scan base-package="com.controls" />
<context:annotation-config />
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="messageConverters">
<list>
<ref bean="stringHttpMessageConverter" />
<ref bean="jsonHttpMessageConverter" />
<ref bean="marshallingHttpMessageConverter" />
</list>
</property>
</bean>
<bean id="stringHttpMessageConverter" class="org.springframework.http.converter.StringHttpMessageConverter" />
<bean id="jsonHttpMessageConverter" class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter" />
<bean id="marshallingHttpMessageConverter" class="org.springframework.http.converter.xml.MarshallingHttpMessageConverter">
<constructor-arg ref="jaxbMarshaller" />
<property name="supportedMediaTypes" value="application/xml"></property>
</bean>
<bean id="jaxbMarshaller" class="org.springframework.oxm.jaxb.Jaxb2Marshaller">
<property name="classesToBeBound">
<list>
<value>com.model.User</value>
</list>
</property>
</bean>
注:要使用Jaxb2Marshaller我们在对应的实体,比如User类上需要标明
@XmlRootElement 注解,需要引入
import javax.xml.bind.annotation.XmlRootElement;
这个包。
Controller中应对请求的方法
@RequestMapping(value="/user/{userid}", method=RequestMethod.GET)
public @ResponseBody User queryUser(@PathVariable("userid") long userID) {
Calendar d = Calendar.getInstance();
d.set(1987, 12, 9);
User u = new User();
u.setUserID(userID);
u.setUserName("zhaoyang");
u.setBirth(d.getTime());
return u;
}
接着我们使用curl这个工具进行测试
如下图:
分享到:
相关推荐
3. **Spring MVC与@RequestBody和@ResponseBody**: - **@RequestBody**:此注解用于控制器方法的参数,表示请求体中的内容应被转换为该参数的对象。Spring会使用合适的HttpMessageConverter(如Jackson的`...
在开发Web应用时,我们经常会遇到一个问题:当使用Spring MVC的`@ResponseBody`注解将后端处理结果直接转化为HTTP响应体时,如果这个结果中包含HTML特殊字符,如尖角号、引号、按位与符号等,浏览器可能会误解析,...
总之,`@ResponseBody`、`@RequestBody`和`@PathVariable`是Spring MVC中不可或缺的三大注解,它们在构建RESTful服务时起着至关重要的作用。掌握它们的用法和工作原理,能够提升我们的开发效率,使我们更好地利用...
标题中的“Spring MVC – Easy REST-Based JSON Services with @ResponseBody”是指使用Spring MVC框架构建基于REST的JSON服务,并通过使用`@ResponseBody`注解来简化这一过程。REST(Representational State ...
在上面的代码中,`@RequestMapping`用于指定URL路径,`@GetMapping`、`@PostMapping`、`@PutMapping`和`@DeleteMapping`是Spring 4.x以后的简化版,但在Spring 3.x中我们需要使用`@RequestMapping`配合`method`属性...
在实际开发中,通常会结合使用`@RequestMapping`和其他注解,如`@ControllerAdvice`(全局异常处理)、`@ResponseBody`(将方法返回值直接转换为HTTP响应体)等,构建出功能丰富的Spring MVC应用程序。 通过理解并...
在Spring MVC框架中,`@RequestBody` 和 `@ResponseBody` 是两个非常重要的注解,它们在处理HTTP请求和响应时起到了关键作用。本篇文章将详细解释这两个注解的工作原理、使用场景以及如何实现Java对象与XML/JSON数据...
Spring MVC内部对@RequestBody的解析过程: 1. 首先,Spring MVC会根据HTTP请求头中的Content-Type类型选择合适的HttpMessageConverter。 2. 然后,Spring MVC会使用选择的HttpMessageConverter来将请求体中的数据...
在实际开发中,`@RequestBody` 和 `@ResponseBody` 的组合使用使得Spring MVC能够轻松地处理RESTful API的请求和响应。它们简化了数据交换的过程,减少了手动序列化和反序列化的代码,提高了开发效率。通过理解这两...
`@RequestBody`和`@ResponseBody`依赖于Spring的核心组件ConversionService,它负责将JSON字符串解析为User对象,并将User对象转换为JSON响应。 总结起来,Spring 3.x中通过JSON进行前后端数据传输主要涉及以下几个...
3. Controller:业务逻辑处理,通过@RequestBody和@ResponseBody注解处理请求和响应数据。 4. ViewResolver:视图解析器,将处理结果转换为视图展示给用户。 5. Model-View-Template(MVC设计模式):模型层、视图层...
9. **RESTful服务**:Spring 4.x改进了对RESTful API的支持,通过@RequestBody、@ResponseBody等注解,简化了JSON数据的交换。 10. **测试支持**:Spring提供了全面的测试工具和库,包括单元测试、集成测试和端到端...
- `@RequestBody`、`@ResponseBody`:将请求体内容映射为Java对象,或将响应内容直接转换为HTTP响应体。 2. **ModelAndView与Model接口**: - `ModelAndView`:用于存储视图名和模型数据,传统的方式返回视图。 ...
- 支持JSON数据交换格式,使用`@RequestBody`和`@ResponseBody`结合Jackson或Gson库。 8. **Spring MVC与其他Spring模块集成**: - 可以与Spring AOP进行切面编程,提供事务管理等功能。 - 集成Spring Security...
Spring MVC打印@RequestBody、@Response日志的方法 Spring MVC框架提供了强大的日志记录功能,对于日志记录的实现,Spring MVC提供了多种方式,本文将主要介绍如何使用RequestBodyAdvisor和ResponseBodyAdvisor来...
总结来说,`@RequestBody`和`@ResponseBody`是Spring MVC处理JSON数据的两个核心工具。`@RequestBody`用于从请求体中读取JSON数据并映射到方法参数,而`@ResponseBody`则将方法的返回值转换为JSON并发送到客户端。...
2. **@RequestBody 和 @ResponseBody**:这两个Spring MVC注解是处理JSON的核心。`@RequestBody`用于将HTTP请求体中的JSON数据映射到Java对象,而`@ResponseBody`则将控制器方法返回的对象转换为JSON响应。 3. **...
### Spring MVC 框架应用知识点详解 #### 一、Spring MVC 概述与基础知识 Spring MVC 是 Spring Framework 的一个重要模块,它实现了 MVC(Model-View-Controller)设计模式,帮助开发者快速构建Web应用程序。MVC...
在这个例子中,`@RequestBody`注解告诉Spring将请求体中的JSON转换为`User`对象,而`@ResponseBody`注解则指示Spring将方法返回的`User`对象转换为JSON并写入响应体。 总的来说,Spring 4.x.x与Jackson 2.5.3的结合...
5. 更强的MVC注解:例如`@RequestParam`、`@PathVariable`、`@RequestBody`等,增强了控制器方法参数的绑定能力。 三、实战应用 在实际项目中,我们可以按照以下步骤使用Spring Web 3.1.1.RELEASE: 1. 配置`web....