繁体   English   中英

如何反序列化地图 <?, ?> 和杰克逊在一起?

[英]How to deserialize a Map<?, ?> with Jackson?

我正在尝试使用杰克逊2.8版的键对任意对象作为键的Map<?, ?>进行序列化/反序列化。 JSON对应项应为一对数组,即给定

public class Foo {
    public String foo;
    public Foo(String foo) {
        this.foo = foo;
    }
}

public class Bar {
    public String bar;
    public Bar(String bar) {
        this.bar = bar;
    }
}

然后

Map<Foo, Bar> map;
map.put(new Foo("foo1"), new Bar("bar1"));
map.put(new Foo("foo2"), new Bar("bar2"));

应该用这个JSON表示

[
    [ { "foo": "foo1" }, { "bar": "bar1" } ],
    [ { "foo": "foo2" }, { "bar": "bar2" } ]
]

所以我做了序列化部分

public class MapToArraySerializer extends JsonSerializer<Map<?, ?>> {

    @Override
    public void serialize(Map<?, ?> value, JsonGenerator gen, SerializerProvider serializers)
        throws IOException, JsonProcessingException {
        gen.writeStartArray();
        for (Map.Entry<?, ?> entry : value.entrySet()) {
            gen.writeStartArray();
            gen.writeObject(entry.getKey());
            gen.writeObject(entry.getValue());
            gen.writeEndArray();
        }
        gen.writeEndArray();
    }

}

但是我不知道如何编写一个JsonDeserializer来完成逆向工作。 有什么建议么?

注意:我需要[ [ "key1", "value1" ], [ "key2", "value2" ] ]表示法,才能在JavaScript中使用new Map( ... )JSON.stringify(map)也会产生该表示法(请参阅https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Map )。

为了澄清,这样的地图将是其他类别的字段,例如

public class Baz {

    @JsonSerialize(using = MapToArraySerializer.class)
    @JsonDeserialize(using = ArrayToMapDeserializer.class, keyAs = Foo.class, contentAs = Bar.class)
    Map<Foo, Bar> map;

}

ArrayToMapDeserializer extends JsonDeserializer<Map<?, ?>>是我寻求帮助的地方。

我想出了这个解决方案:

public class ArrayToMapDeserializer extends JsonDeserializer<SortedMap<Object, Object>>
    implements ContextualDeserializer {

    private Class<?> keyAs;

    private Class<?> contentAs;

    @Override
    public Map<Object, Object> deserialize(JsonParser p, DeserializationContext ctxt)
        throws IOException, JsonProcessingException {
        return this.deserialize(p, ctxt, new HashMap<>());
    }

    @Override
    public Map<Object, Object> deserialize(JsonParser p, DeserializationContext ctxt,
        Map<Object, Object> intoValue) throws IOException, JsonProcessingException {
        JsonNode node = p.readValueAsTree();
        ObjectCodec codec = p.getCodec();
        if (node.isArray()) {
            node.forEach(entry -> {
                try {
                    JsonNode keyNode = entry.get(0);
                    JsonNode valueNode = entry.get(1);
                    intoValue.put(keyNode.traverse(codec).readValueAs(this.keyAs),
                        valueNode.traverse(codec).readValueAs(this.contentAs));
                } catch (NullPointerException | IOException e) {
                    // skip entry
                }
            });
        }
        return intoValue;
    }

    @Override
    public JsonDeserializer<?> createContextual(DeserializationContext ctxt, BeanProperty property)
        throws JsonMappingException {
        JsonDeserialize jsonDeserialize = property.getAnnotation(JsonDeserialize.class);
        this.keyAs = jsonDeserialize.keyAs();
        this.contentAs = jsonDeserialize.contentAs();
        return this;
    }

}

可以这样使用:

public class Baz {

    @JsonSerialize(using = MapToArraySerializer.class)
    @JsonDeserialize(using = ArrayToMapDeserializer.class,
        keyAs = Foo.class, contentAs = Bar.class)
    Map<Foo, Bar> map;

}

这是反序列化:

@Override
public Map<?, ?> deserialize(JsonParser p, DeserializationContext ctxt)
        throws IOException, JsonProcessingException {
    Map map = new LinkedHashMap();

    ObjectCodec oc = p.getCodec();
    JsonNode anode = oc.readTree(p);

    for (int i = 0; i < anode.size(); i++) {
        JsonNode node = anode.get(i);
        map.put(node.get(0), node.get(1));
    }

    return map;
}

我在原始解决方案中添加了一些具有新Oson实现的测试用例,在该解决方案中,我使用oson进行了转换,但使用了不同的约定:映射到json:{key1:value1,key2:value2,... },因此json输出变为:

{
  {
    "foo": "foo1"
  }: {
    "bar": "bar1"
  },
  {
    "foo": "foo2"
  }: {
    "bar": "bar2"
  }
}

您可以签出源代码

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM