美文网首页
java bean转json时将null字段设置不转换的方法

java bean转json时将null字段设置不转换的方法

作者: 四顾sel | 来源:发表于2018-08-25 14:58 被阅读433次

    java bean转json一般用GSON,ObjectMapper和JSONObject(json-lib)来转换。

    1.使用GSON时,默认不对null字段进行转换。

    Gson gsonSerializeNull = new GsonBuilder().serializeNulls().create();

    2.使用ObjectMapper时

    ObjectMapper objectMapper= new ObjectMapper();

    objectMapper.setSerializationInclusion(Include.NON_NULL);

    3.使用json-lib时

    PropertyFilter filter = new PropertyFilter() {

                public boolean apply(Object object, String fieldName,

                        Object fieldValue) {

                    return null == fieldValue;

                }

            };

            jsonConfig.setJsonPropertyFilter(filter);

            System.out.println(JSONObject.fromObject(s, jsonConfig).toString());

    4

    相关文章

      网友评论

          本文标题:java bean转json时将null字段设置不转换的方法

          本文链接:https://www.haomeiwen.com/subject/ybkgiftx.html