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

技术背景

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

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

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

以下直接给出相关配置

<mvc:annotation-drivencontent-negotiation-manager="contentNegotiationManager">

<mvc:message-converters>

<refbean="jsonMessageConverter"/>

</mvc:message-converters>

</mvc:annotation-driven>

<beanclass="org.springframework.beans.factory.config.MethodInvokingFactoryBean">

<propertyname="targetObject">

<refbean="jacksonObjectMapper"/>

</property>

<propertyname="targetMethod"value="configure"/>

<propertyname="arguments">

<list>

<valuetype="com.fasterxml.jackson.databind.DeserializationFeature">FAIL_ON_UNKNOWN_PROPERTIES</value>

<value>false</value>

</list>

</property>

</bean>

<beanid="jacksonObjectMapper"class="com.fasterxml.jackson.databind.ObjectMapper">

<!--处理responseBody里面日期类型-->

<propertyname="dateFormat">

<beanclass="java.text.SimpleDateFormat">

<constructor-argtype="java.lang.String"value="yyyy-MM-ddHH:mm:ss"/>

</bean>

</property>

<!--为null字段时不显示-->

<propertyname="serializationInclusion">

<valuetype="com.fasterxml.jackson.annotation.JsonInclude.Include">NON_NULL</value>

</property>

</bean>

相关推荐