开发者社区 问答 正文

请问在spring boot中如何配置json - java报错

以前在用spring mvc时,在配置文件中会添加如下配置来设置json序列化时过滤null值。请问各位在spring boot中如何配置呢?

<mvc:annotation-driven>
    <mvc:message-converters register-defaults="true">
        <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
            <property name="objectMapper">
                <bean class="com.fasterxml.jackson.databind.ObjectMapper">
                    <property name="serializationInclusion">
                        <value type="com.fasterxml.jackson.annotation.JsonInclude.Include">NON_NULL</value>
                    </property>
                </bean>
            </property>
        </bean>
    </mvc:message-converters>
</mvc:annotation-driven>



展开
收起
montos 2020-05-31 15:17:13 488 分享 版权
1 条回答
写回答
取消 提交回答
  • 官网上有的

     

     public static class Serializer extends JsonSerializer<CommonResult> {

            @Override
            public void serialize(CommonResult cr, JsonGenerator jg, SerializerProvider sp) throws IOException, JsonProcessingException {
                String json = objectMapper.writeValueAsString(cr);
                jg.writeString(json);
            }

        }

    2020-05-31 15:17:22
    赞同 展开评论