简介:

@RequestBody

作用:

i) 该注解用于读取Request请求的body部分数据,使用系统默认配置的HttpMessageConverter进行解析,然后把相应的数据绑定到要返回的对象上;

ii) 再把HttpMessageConverter返回的对象数据绑定到 controller中方法的参数上。

使用时机:

A) GET、POST方式提时, 根据request header Content-Type的值来判断:

  • application/x-www-form-urlencoded, 可选(即非必须,因为这种情况的数据@RequestParam, @ModelAttribute也可以处理,当然@RequestBody也能处理);
  • multipart/form-data, 不能处理(即使用@RequestBody不能处理这种格式的数据);
  • 其他格式, 必须(其他格式包括application/json, application/xml等。这些格式的数据,必须使用@RequestBody来处理);

B) PUT方式提交时, 根据request header Content-Type的值来判断:

  • application/x-www-form-urlencoded, 必须;
  • multipart/form-data, 不能处理;
  • 其他格式, 必须;

说明:request的body部分的数据编码格式由header部分的Content-Type指定;

@ResponseBody

作用:

该注解用于将Controller的方法返回的对象,通过适当的HttpMessageConverter转换为指定格式后,写入到Response对象的body数据区。

使用时机:

返回的数据不是html标签的页面,而是其他某种格式的数据时(如json、xml等)使用;

HttpMessageConverter

<span style="font-family:Microsoft YaHei;">/**  * Strategy interface that specifies a converter that can convert from and to HTTP requests and responses.  *  * @author Arjen Poutsma  * @author Juergen Hoeller  * @since 3.0  */
public interface HttpMessageConverter<T> {    /**  * Indicates whether the given class can be read by this converter.  * @param clazz the class to test for readability  * @param mediaType the media type to read, can be {@code null} if not specified.  * Typically the value of a {@code Content-Type} header.  * @return {@code true} if readable; {@code false} otherwise  */    boolean canRead(Class<?> clazz, MediaType mediaType);    /**  * Indicates whether the given class can be written by this converter.  * @param clazz the class to test for writability  * @param mediaType the media type to write, can be {@code null} if not specified.  * Typically the value of an {@code Accept} header.  * @return {@code true} if writable; {@code false} otherwise  */    boolean canWrite(Class<?> clazz, MediaType mediaType);    /**  * Return the list of {@link MediaType} objects supported by this converter.  * @return the list of supported media types  */    List<MediaType> getSupportedMediaTypes();    /**  * Read an object of the given type form the given input message, and returns it.  * @param clazz the type of object to return. This type must have previously been passed to the  * {@link #canRead canRead} method of this interface, which must have returned {@code true}.  * @param inputMessage the HTTP input message to read from  * @return the converted object  * @throws IOException in case of I/O errors  * @throws HttpMessageNotReadableException in case of conversion errors  */    T read(Class<? extends T> clazz, HttpInputMessage inputMessage)    throws IOException, HttpMessageNotReadableException;    /**  * Write an given object to the given output message.  * @param t the object to write to the output message. The type of this object must have previously been  * passed to the {@link #canWrite canWrite} method of this interface, which must have returned {@code true}.  * @param contentType the content type to use when writing. May be {@code null} to indicate that the  * default content type of the converter must be used. If not {@code null}, this media type must have  * previously been passed to the {@link #canWrite canWrite} method of this interface, which must have  * returned {@code true}.  * @param outputMessage the message to write to  * @throws IOException in case of I/O errors  * @throws HttpMessageNotWritableException in case of conversion errors  */    void write(T t, MediaType contentType, HttpOutputMessage outputMessage)    throws IOException, HttpMessageNotWritableException;    }
</span>

该接口定义了四个方法,分别是读取数据时的 canRead(), read() 和 写入数据时的canWrite(), write()方法。

在使用 <mvc:annotation-driven />标签配置时,默认配置了RequestMappingHandlerAdapter(注意是RequestMappingHandlerAdapter不是AnnotationMethodHandlerAdapter,详情查看spring 3.1 document “16.14 Configuring spring MVC”章节),并为他配置了一下默认的HttpMessageConverter:

ByteArrayHttpMessageConverter converts byte arrays.    StringHttpMessageConverter converts strings.    ResourceHttpMessageConverter converts to/from org.springframework.core.io.Resource for all media types.    SourceHttpMessageConverter converts to/from a javax.xml.transform.Source.    FormHttpMessageConverter converts form data to/from a MultiValueMap<String, String>.    Jaxb2RootElementHttpMessageConverter converts Java objects to/from XML — added if JAXB2 is present on the classpath.    MappingJacksonHttpMessageConverter converts to/from JSON — added if Jackson is present on the classpath.    AtomFeedHttpMessageConverter converts Atom feeds — added if Rome is present on the classpath.    RssChannelHttpMessageConverter converts RSS feeds — added if Rome is present on the classpath.

ByteArrayHttpMessageConverter: 负责读取二进制格式的数据和写出二进制格式的数据;

StringHttpMessageConverter:   负责读取字符串格式的数据和写出二进制格式的数据;

ResourceHttpMessageConverter:负责读取资源文件和写出资源文件数据;

FormHttpMessageConverter:       负责读取form提交的数据(能读取的数据格式为 application/x-www-form-urlencoded,不能读取multipart/form-data格式数据);负责写入application/x-www-from-urlencoded和multipart/form-data格式的数据;

MappingJacksonHttpMessageConverter:  负责读取和写入json格式的数据;

SouceHttpMessageConverter:                   负责读取和写入 xml 中javax.xml.transform.Source定义的数据;

Jaxb2RootElementHttpMessageConverter:  负责读取和写入xml 标签格式的数据;

AtomFeedHttpMessageConverter:              负责读取和写入Atom格式的数据;

RssChannelHttpMessageConverter:           负责读取和写入RSS格式的数据;

当使用@RequestBody和@ResponseBody注解时,RequestMappingHandlerAdapter就使用它们来进行读取或者写入相应格式的数据。

 

HttpMessageConverter匹配过程:

<span style="font-family:Microsoft YaHei;">private Object readWithMessageConverters(MethodParameter methodParam, HttpInputMessage inputMessage, Class paramType)    throws Exception {    MediaType contentType = inputMessage.getHeaders().getContentType();    if (contentType == null) {    StringBuilder builder = new StringBuilder(ClassUtils.getShortName(methodParam.getParameterType()));    String paramName = methodParam.getParameterName();    if (paramName != null) {    builder.append(' ');    builder.append(paramName);    }    throw new HttpMediaTypeNotSupportedException(    "Cannot extract parameter (" + builder.toString() + "): no Content-Type found");    }    List<MediaType> allSupportedMediaTypes = new ArrayList<MediaType>();    if (this.messageConverters != null) {    for (HttpMessageConverter<?> messageConverter : this.messageConverters) {    allSupportedMediaTypes.addAll(messageConverter.getSupportedMediaTypes());    if (messageConverter.canRead(paramType, contentType)) {    if (logger.isDebugEnabled()) {    logger.debug("Reading [" + paramType.getName() + "] as \"" + contentType    +"\" using [" + messageConverter + "]");    }    return messageConverter.read(paramType, inputMessage);    }    }    }    throw new HttpMediaTypeNotSupportedException(contentType, allSupportedMediaTypes);    }</span>

 

@ResponseBody注解时: 根据Request对象header部分的Accept属性(逗号分隔),逐一按accept中的类型,去遍历找到能处理的HttpMessageConverter;

源代码如下:

@RequestBody注解时: 根据Request对象header部分的Content-Type类型,逐一匹配合适的HttpMessageConverter来读取数据;

spring 3.1源代码如下:

<span style="font-family:Microsoft YaHei;">private void writeWithMessageConverters(Object returnValue,    HttpInputMessage inputMessage, HttpOutputMessage outputMessage)    throws IOException, HttpMediaTypeNotAcceptableException {    List<MediaType> acceptedMediaTypes = inputMessage.getHeaders().getAccept();    if (acceptedMediaTypes.isEmpty()) {    acceptedMediaTypes = Collections.singletonList(MediaType.ALL);    }    MediaType.sortByQualityValue(acceptedMediaTypes);    Class<?> returnValueType = returnValue.getClass();    List<MediaType> allSupportedMediaTypes = new ArrayList<MediaType>();    if (getMessageConverters() != null) {    for (MediaType acceptedMediaType : acceptedMediaTypes) {    for (HttpMessageConverter messageConverter : getMessageConverters()) {    if (messageConverter.canWrite(returnValueType, acceptedMediaType)) {    messageConverter.write(returnValue, acceptedMediaType, outputMessage);    if (logger.isDebugEnabled()) {    MediaType contentType = outputMessage.getHeaders().getContentType();    if (contentType == null) {    contentType = acceptedMediaType;    }    logger.debug("Written [" + returnValue + "] as \"" + contentType +    "\" using [" + messageConverter + "]");    }    this.responseArgumentUsed = true;    return;    }    }    }    for (HttpMessageConverter messageConverter : messageConverters) {    allSupportedMediaTypes.addAll(messageConverter.getSupportedMediaTypes());    }    }    throw new HttpMediaTypeNotAcceptableException(allSupportedMediaTypes);    }</span>

补充:

MappingJacksonHttpMessageConverter 调用了 objectMapper.writeValue(OutputStream stream, Object)方法,使用@ResponseBody注解返回的对象就传入Object参数内。若返回的对象为已经格式化好的json串时,不使用@RequestBody注解,而应该这样处理:
1、response.setContentType("application/json; charset=UTF-8");
2、response.getWriter().print(jsonStr);
直接输出到body区,然后的视图为void。

转载于:https://www.cnblogs.com/gxbk629/p/6030312.html

@RequestBody, @ResponseBody 注解详解相关推荐

  1. 【SpringMVC】SpringMVC: @RequestBody 和@ResponseBody 注解详解 NoHandlerFoundException

    文章目录 1.美图 2.概述 3.@RequestBody 3.1 使用时机 4.@ResponseBody 4.1 错误案例 4.2 苦苦寻找 4.3 思考升华 5.HttpMessageConve ...

  2. spring-boot注解详解(一)

    spring-boot注解详解(一) @SpringBootApplication @SpringBootApplication = (默认属性)@Configuration + @EnableAut ...

  3. SpringMVC学习:控制层(Controller)基于注解详解

    文章目录 一.URL映射Controller的方法返回值 二.SpringMVC各类注解详解 (一) @Controller (二) @RequestMapping 1.基本用法 2. path属性或 ...

  4. Spring Boot注解详解

    文章目录 使用注解的优势 注解详解(配备了完善的释义) 注解列表如下 JPA注解 springMVC相关注解 全局异常处理 项目中具体配置解析和使用环境 使用注解的优势 采用纯java代码,不在需要配 ...

  5. 【SpringBoot 】SpringBoot注解详解

    [SpringBoot ]SpringBoot注解详解 一.注解(annotations)列表  @SpringBootApplication:包含了@ComponentScan.@Configura ...

  6. Hibernate Validation校验注解详解

    在前后端传递数据的时候,往往后端需要校验传递数据的格式,比如用户名的格式,密码是否为空.我们可以在service层编写代码判断,但是当我们在多处需要校验传递来的数据的时候,就会出现大量重复的代码,一旦 ...

  7. 26.SpringBoot事务注解详解

    转自:https://www.cnblogs.com/kesimin/p/9546225.html @Transactional spring 事务注解 1.简单开启事务管理 @EnableTrans ...

  8. mybatis注解详解

    mybatis注解详解 首 先当然得下载mybatis-3.0.5.jar和mybatis-spring-1.0.1.jar两个JAR包,并放在WEB-INF的lib目录下 (如果你使用maven,则 ...

  9. 开启注解缓存_Spring Boot 2.x基础教程:进程内缓存的使用与Cache注解详解

    随着时间的积累,应用的使用用户不断增加,数据规模也越来越大,往往数据库查询操作会成为影响用户使用体验的瓶颈,此时使用缓存往往是解决这一问题非常好的手段之一.Spring 3开始提供了强大的基于注解的缓 ...

最新文章

  1. linux shell dig nslookup 指定dns服务器 查询域名解析
  2. 为什么socket接收大数据的时候接收不完全,出现丢包?
  3. dubbo+zookeeper+dubbo管理控制台实践demo
  4. LiveVideoStackCon深圳-编解码的三足鼎立
  5. vector容器中查找某一元素是否存在(牛逼的vector!!!!!!)
  6. a12处理器和骁龙855_【性能】骁龙855最新跑分曝光 多核竟超苹果A12?
  7. 自动驾驶算法-滤波器系列(一)——详解卡尔曼滤波原理
  8. 深度学习花书-3.8 期望、方差与协方差
  9. JDK11即将来临,新特性了解一下
  10. windows系统服务器打补丁,给Windows打补丁太难?2招搞定
  11. 苹果手机怎样软件签名?
  12. 肝了 10 万字 ,Go 语言保姆级编程教程2021最新版(建议收藏)
  13. 若干排序算法简单汇总(一)
  14. OAuth2:使用JWT和加密签名
  15. 申宝股票-三大指数震荡下行
  16. linux任务调度框架,任务调度框架Hangfire 简介
  17. android 多屏幕显示activity,副屏,无线投屏
  18. 数仓建设 | ODS、DWD、DWM等理论实战(好文收藏)
  19. java抽奖_JAVA实现用户抽奖功能(附完整代码)
  20. U盘安装ubuntu(双系统共存)

热门文章

  1. 国产GPU为何“一夜杀到老黄城下”?
  2. 电脑插个“U盘”就能给基因测序,实时查看结果,售价1000美元
  3. 日本发明的“舔屏尝味”电视火了:伸个舌头可尝酸甜苦辣,网友一时不知如何评价...
  4. C/C++难题的高赞回答「中文版」,帮你整理好了
  5. 微软、海思、任天堂等50多家知名公司源代码泄露,人人均可公开访问
  6. 搜狗听写,现在是录音笔硬件的“操作系统”了
  7. automake使用说明
  8. zabbix安装配置详解(一)
  9. Maven配置将war包部署到Tomcat(tomcat7-maven-plugin)
  10. java hashmap非线程安全