`

springmvc @ResponseBody与@RequestBody忽略空值字段

 
阅读更多
技术背景

  接受参数部分:前后端有时候需要以json格式的数据进行传输,springmvc默认为后台封装了对json字符串解析为java对象的解析器.前端传值如果为json字符串,对应的请求处理器只需要定义与json格式匹配的对象,并且在前加上@RequestBody注解,spring就会自己完成转化过程。

  返回参数部分,使用@ResponseBody可以将返回对象转化为json格式数据.

以上两种情况在默认情况下都会出现两个问题,接收部分如果后台定义的对象前台没有传值则会抛出异常,而返回部分如果有字段值为空,该字段还是会被序列化成json字符串,这样对于流量是有消耗的.

  以下直接给出相关配置

   <mvc:annotation-driven content-negotiation-manager="contentNegotiationManager">
         <mvc:message-converters>
         <ref bean="jsonMessageConverter"/>
         </mvc:message-converters>
    </mvc:annotation-driven>

<bean class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
        <property name="targetObject">
            <ref bean="jacksonObjectMapper" />
        </property>
        <property name="targetMethod" value="configure" />
        <property name="arguments">
            <list>
                <value type="com.fasterxml.jackson.databind.DeserializationFeature">FAIL_ON_UNKNOWN_PROPERTIES</value>
                <value>false</value>
            </list>
        </property>
    </bean>
<bean id="jacksonObjectMapper" class="com.fasterxml.jackson.databind.ObjectMapper">
<!-- 处理responseBody 里面日期类型 -->
<property name="dateFormat">
<bean class="java.text.SimpleDateFormat">
<constructor-arg type="java.lang.String" value="yyyy-MM-dd HH:mm:ss" />
</bean>
</property>
<!-- 为null字段时不显示 -->
<property name="serializationInclusion">
<value type="com.fasterxml.jackson.annotation.JsonInclude.Include">NON_NULL</value>
</property>
</bean>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics