2

反序列化MyEntity(这是一个接口)时,我要么有

  • 以下输入:

    { "id": 123 }
    

    在这种情况下,我想将其反序列化为

    new MyEntityRef(123)
    
  • 或者我有以下输入:

    {
        "id": 123,
        "message": "Hello world",
        "otherEntity": {
            "field": "value",
            ...
        }
    }
    

    在这种情况下,我想将其反序列化为

    new MyEntityImpl(123, "Hello world", otherEntity);
    

    whereotherEntity的反序列化方式与在MyEntity.

我已经想出了如何通过 a 注册我自己的自定义反序列化器,SimpleModule但我不知道如何

  1. 根据某些字段的存在(message如上)选择自定义反序列化器。
  2. 某些字段(例如otherEntity上面)的“默认”序列化程序的后备。
4

1 回答 1

1

最后通过如下配置我的 ObjectMapper 解决了它:

ObjectMapper mapper = new ObjectMapper();

SimpleModule idAsRefModule = new SimpleModule("ID-to-ref",
                                              new Version(1, 0, 0, null));

idAsRefModule.addDeserializer(TestEntity.class,
                              new JsonDeserializer<TestEntity>() {
    @Override
    public TestEntity deserialize(JsonParser jp, DeserializationContext dc)
            throws IOException, JsonProcessingException {

        ObjectCodec codec = jp.getCodec();
        JsonNode node = codec.readTree(jp);
        boolean isFullImpl = node.has("message");
        Class<? extends TestEntity> cls = isFullImpl ? TestEntityImpl.class
                                                     : TestEntityRef.class;
        return codec.treeToValue(node, cls);
    }
});

mapper.registerModule(idAsRefModule);

return mapper;
于 2013-10-19T09:38:04.353 回答