Jackson readTree() 忽略 null 和空值

Jackson readTree() ignore null and empty values

我看到了其他一些与此类似的帖子,所以如果有人问过这个问题,我提前道歉。但是我找不到任何适合我的解决方案。

我正在从 Web 服务获取一大块 JSON,然后我想将其存储在 Amazon 的 DynamoDB 中。然而,返回的 JSON 中有一些 null 和空值,这是 DynamoDB 不喜欢的。

所以我想从 JSON 中删除这些值。我目前正在通过 readTree() 方法使用 Jackson 进行 JSON 反序列化,如下所示:

String sitesDataJson = webService.getData();

// create the object mapper and instruct it to skip null values
ObjectMapper mapper = new ObjectMapper();
mapper = mapper.setSerializationInclusion(JsonInclude.Include.NON_EMPTY);

JsonNode jsonObj = null;
try {
    jsonObj = mapper.readTree(sitesDataJson);
} catch (IOException e) {
    e.printStackTrace();
}

我正在尝试阅读的 JSON 如下:

{  
   "domain_override":"",
   "id":"106949",
   "category_override":null,
   "content_topic":null,
   "modified_date":"2013-12-04 20:31:50",
   "market":{  
      "brand_labels":{  
      "op":"allow_all"
  },
  "domains":null,
  "blocked_contentattributes":{  
     "6":true
  },
  "blocked_creativetypes":{  
     "11":true,
     "10":true,
     "5":true
  },
  "brands":{  
     "ids":{  
        "5953":true,
        "4644":true,
        "8418":true,
        "25480":true,
        "95":true,
        "5650":true
     },
     "op":"block"
      },
      "blocked_languages":{  

      },
      "allow_unbranded_buyers":"0"
   },
   "type":"site",
   "status":"Active",
   "account_id":"100766",
   "deleted":"0",
   "v":"2",
   "delivery_medium":"WEB",
   "delivery_medium_id":"2",
   "content_type_id":null,
   "notes":null,
   "platform_id":null,
   "autorefresh_settings":{  

   },
   "created_date":"2013-10-16 16:49:48",
   "external_id":null,
}

使用 NON_EMPTY 或 NON_NULL 设置执行 readTree() 似乎没有区别。使用 .toString() 打印 jsonObj 显示空值和 null 值仍然存在。

所以我是不是用错了方法?有没有更好的(或者只是正确的!)方法来做到这一点?

我还应该补充一点,我曾尝试做同样的事情,但是使用 GSON,我读到它默认删除了这些属性。但是,这也没有删除它们。那么这是否表明正在使用的 JSON 有一些奇怪之处?

但是后来我看不出它是怎么回事,因为我已经尝试用非常简单的 JSON:

测试我的代码(Jackson 和 GSON)
    String json = "{"
            + "\"name\" : \"val1\","
            + "\"address\" : null"
            + "}";

但这仍然没有在使用 readTree() 时删除地址属性。这是否意味着 NON_NULL 和 NON_EMPTY 设置对 readTree() 方法没有影响?它们实际上仅用于对象序列化为 JSON 时吗?我真的需要将我的 JSON 读入 POJO 才能处理 null 或空值吗?

非常感谢。

我不能 100% 确定我提出的解决方案是否适用于您的情况,但是有一种方法可以在反序列化过程中使用自定义反序列化器。

StringDeserializer deserializer = new StringDeserializer();
SimpleModule module = new SimpleModule("StringDeserializerModule",
                      new Version(1, 0, 0, null));
module.addDeserializer(String.class, deserializer);
ObjectMapper mapper = new ObjectMapper();
mapper.registerModule(module);

现在您可以为您认为可能存在 null/empty 的属性添加更多自定义反序列化器,并自定义 deserialize() 表示。

class StringDeserializer extends JsonDeserializer<String>
{
    @Override
    public String deserialize(JsonParser jp, DeserializationContext ctxt)    throws IOException, JsonProcessingException
   {
        //Customize
   }
}