JAVA FastJson 返回参数为空过滤

2022/2/22 17:53:49

本文主要是介绍JAVA FastJson 返回参数为空过滤,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1、问题原因
使用FastJson 如果返回结果中有空的字段会过滤

2、问题解决

@Configuration
public class ConverterConfig {

    @Bean
    @Order(Integer.MIN_VALUE)
    public HttpMessageConverters fastJsonHttpMessageConverters() {
        FastJsonHttpMessageConverter fastConverter = new FastJsonHttpMessageConverter();
        FastJsonConfig fastJsonConfig = new FastJsonConfig();
        //SerializerFeature.WriteMapNullValue 增加可解决
        fastJsonConfig.setSerializerFeatures(SerializerFeature.PrettyFormat,SerializerFeature.WriteMapNullValue);
        fastConverter.setFastJsonConfig(fastJsonConfig);
        return new HttpMessageConverters(fastConverter);
    }
  }


这篇关于JAVA FastJson 返回参数为空过滤的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程