简体   繁体   中英

Polymorphic deserialization of JSON file with Jackson

Depending on the content of a JSON file, I want to deserialize it either to a superclass or subclass.

It should be deserialized to the superclass if it looks like this:

{
   "id":"123",
   "title":"my title",
   "body":"my body"
}

Or to the subclass if it looks like this:

{
   "id":"123",
   "title":"my title",
   "body":"my body",
   "tags":["tag1", "tag2"]
}

So the only difference is the tags array, which should be deserialized to a String array. But if I trigger the deserialization in Jersey (Dropwizard) via POST request, it returns {"code":400,"message":"Unable to process JSON"} .

This is the superclass:

@JsonTypeInfo(use = JsonTypeInfo.Id.NAME)
@JsonSubTypes({ @JsonSubTypes.Type(name = "subdocument", value = SubDocument.class) })
public class SuperDocument {

private String id;
private String title;
private String body;

public SuperDocument() {

}

@JsonCreator
public SuperDocument(@JsonProperty("id") String id, @JsonProperty("title") String title, @JsonProperty("body") String body) {
    this.id = id;
    this.title = title;
    this.body = body;
}

@JsonProperty("id")
public String getId() {
    return id;
}

@JsonProperty("id")
public void setId(String id) {
    this.id = id;
}

... the other getters and setters ...
}

This is the subclass:

@JsonTypeName("subdocument")
public class SubDocument extends SuperDocument {

private String[] tags;

public SubDocument() {

}

@JsonCreator
public SubDocument(@JsonProperty("id") String id, @JsonProperty("title") String title, @JsonProperty("body") String body, @JsonProperty("tags") String[] tags) {
    super(id, title, body);
    this.tags = tags;
}

@JsonProperty("tags")
public String[] getTags() {
    return tags;
}

@JsonProperty("tags")
public void setTags(String[] tags) {
    this.tags = tags;
}
}

Do you know what I am doing wrong?

JsonTypeInfo require a property that can identify your sub-class/super class. For eg:

{
   "id":"123",
   "title":"my title",
   "body":"my body",
   "type":"superdocument"
}

and

{
   "id":"123",
   "title":"my title",
   "body":"my body",
   "tags":["tag1", "tag2"],
   "type":"subdocument"
}

Then modify SuperDocument annotations as shown below.

@JsonTypeInfo(use = JsonTypeInfo.Id.NAME,property="type")
@JsonSubTypes({ @JsonSubTypes.Type(name = "subdocument", value = SubDocument.class),@JsonSubTypes.Type(name = "superdocument", value = SuperDocument.class) })

public class SuperDocument {

}

If you don't want to intrduce an additional property "type", then you may have to write a custom type resolver and type deserializer as shown below.

    public class DocumentTypeResolver extends StdTypeResolverBuilder {
    @Override
    public TypeDeserializer buildTypeDeserializer(
            final DeserializationConfig config, final JavaType baseType, final Collection<NamedType> subtypes) {
        return new DocumentDeserializer(baseType, null,
                _typeProperty, _typeIdVisible, _defaultImpl);
    }
}

Custom TypeDeserializer

    public static class DocumentDeserializer extends AsPropertyTypeDeserializer {

    public DocumentDeserializer(final JavaType bt, final TypeIdResolver idRes, final String typePropertyName, final boolean typeIdVisible, final Class<?> defaultImpl) {
        super(bt, idRes, typePropertyName, typeIdVisible, defaultImpl);
    }

    public DocumentDeserializer(final AsPropertyTypeDeserializer src, final BeanProperty property) {
        super(src, property);
    }

    @Override
    public TypeDeserializer forProperty(final BeanProperty prop) {
        return (prop == _property) ? this : new DocumentDeserializer(this, prop);
    }

    @Override
    public Object deserializeTypedFromObject(final JsonParser jp, final DeserializationContext ctxt) throws IOException {
        JsonNode node = jp.readValueAsTree();
        Class<?> subType =null;
        JsonNode tags = node.get("tags");
        if (tags == null) {
             subType=SuperDocument.class;
        } else {
            subType=SubDocument.class;
        }
        JavaType type = SimpleType.construct(subType);
        JsonParser jsonParser = new TreeTraversingParser(node, jp.getCodec());
        if (jsonParser.getCurrentToken() == null) {
            jsonParser.nextToken();
        }

        JsonDeserializer<Object> deser = ctxt.findContextualValueDeserializer(type, _property);
        return deser.deserialize(jsonParser, ctxt);

    }

}

Now annotate your SuperDocument class as shown below

@JsonTypeInfo(use = JsonTypeInfo.Id.NONE)
@JsonTypeResolver(DocumentTypeResolver.class)
public class SuperDocument {

}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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