spring mvc 删除返回字符串中值为null的字段

Posted 一路前行

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring mvc 删除返回字符串中值为null的字段相关的知识,希望对你有一定的参考价值。

在spring的配置文件中进行一下配置:

<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
        <property name="messageConverters">
            <list>
                <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
                    <property name="objectMapper">
                        <bean id="jacksonObjectMapper" class="com.fasterxml.jackson.databind.ObjectMapper">
                            <property name="dateFormat">
                                <bean class="java.text.SimpleDateFormat">
                                    <constructor-arg type="java.lang.String" value="yyyy-MM-dd HH:mm:ss" />
                                </bean>
                            </property>
                            <property name="serializationInclusion">
                                <util:constant static-field="com.fasterxml.jackson.annotation.JsonInclude.Include.NON_NULL" />
                            </property>
                        </bean>
                    </property>
                    <property name="supportedMediaTypes">
                        <list>
                            <value>application/json;charset=UTF-8</value>
                        </list>
                    </property>
                </bean>
            </list>
        </property>
    </bean>

 下载完整文件

以上是关于spring mvc 删除返回字符串中值为null的字段的主要内容,如果未能解决你的问题,请参考以下文章

在 Spring MVC 中将值设置为 NULL 而不是空字符串

Spring MVC 正在删除 @PathVariable

spring mvc接收参数方式,json格式返回请求数据

栈和队列----删除无序单链表中值重复出现的节点

LeetCode -- 删除链表中值为k的元素

Spring MVC ModelAttribute 字段为 Null 而不是表单输入值