解决fastjson自动过滤null值

使用 SerializerFeature.WriteNullStringAsEmpty 解决

   List<HistoryVector> historyVectors= new ArrayList<>();

        HistoryVector historyVector = new HistoryVector();
        historyVector.setInput("1");
        historyVector.setReason("111111");
        historyVector.setResult(null);
        historyVectors.add(historyVector);

        System.out.println(JSON.toJSONString(historyVector));

        System.out.println(JSON.toJSONString(historyVector, SerializerFeature.WriteNullStringAsEmpty));

输出的信息

{"input":"1","reason":"111111"}
{"case_desc":"","input":"1","reason":"111111","result":""}

当然你也可以写成一个配置,无需在每个JSON.toJSONString里面添加参数,以下为fastjson SerializerFeature其他方法
在这里插入图片描述

GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e 3 个月前
8c391e04 6 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐