Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm having a bit of a problem understanding how i should configure the objectMapper and pojo when deserializing. My Json is created by another application that supports both xml and json. It returns a list with myobject, but the Json contains the type, like this:

[
    {
        "myobject": {
            "somethingcool": "amazing",
            "contactPersonsForMyObject": [
                "test.test@gmail.com",
                "test@test.se"
            ],
            "myObjectId": "c85e48730501bfae41e67714c6131b7d"
        }
    },
    {
        "myobject": {
            "somethingcool": "cool",
            "contactPersonsForMyObject": [
                "test.test2@gmail.com",
                "test@test2.se"
            ],
            "myObjectId": "c85e48730501bfae41e67714cqwerty"
        }
    }
]

My class:

public class MyObject {

    private String myObjectId;
    private String somethingcool;
    private List<String> contactPersonsForMyObject;

    public String getMyObjectId() {
        return myObjectId;
    }

    public void setMyObjectId(String myObjectId) {
        this.myObjectId = myObjectId;
    }

    public String getSomethingcool() {
        return somethingcool;
    }

    public void setSomethingcool(String somethingcool) {
        this.somethingcool = somethingcool;
    }

    public List<String> getContactPersonsForMyObject() {
        return contactPersonsForMyObject;
    }

    public void setContactPersonsForMyObject(List<String> contactPersonsForMyObject) {
        this.contactPersonsForMyObject = contactPersonsForMyObject;
    }
}

But when doing:

List<MyObject> myObjects = mapper.convertValue(rootNode, new TypeReference<List<MyObject>>() {});

I'm getting a exception stating:

java.lang.IllegalArgumentException: Unrecognized field "myobject" (Class com.domain.MyObject), not marked as ignorable
 at [Source: N/A; line: -1, column: -1] (through reference chain: com.domain.MyObject["myobject"])

It's like the mapper do not understand the extra "layer". When serializing to get this structure it is possible to configure the mapper like this: mapper.configure(SerializationConfig.Feature.WRAP_ROOT_VALUE, true);

So there should be somehow to do the reverse?

Thank you!

share|improve this question

2 Answers

up vote 1 down vote accepted

What you need is to use @JsonTypeInfo annotation on type (class) that will include additional type information. In your case it looks as if you wanted to include a type id as property key. If so, inclusion method should be "as wrapper object", and you will also need to define what type id of "myobject" binds to -- this can be done by adding @JsonTypeName("myobject") for MyObject class (it needs to be included in subtype of whatever has @JsonTypeInfo, but in this case both would be added for the same class).

share|improve this answer
Please could you elaborate your answer, maybe be some code example? I find the documentation for this hard to understand. – jakob Aug 31 '11 at 14:06
You may want to ask this on jackson users list; also, googling can find decent articles (from fasterxml jackson wiki, cowtowncoder.com blog), if javadocs for @JsonTypeInfo are not clear enough. – StaxMan Sep 1 '11 at 6:01

Your json has an extra level of nesting: you have a list of Maps of Strings to MyObjects, not a List of MyObjects. You'd need to read it like this:

List<Map<String, MyObject>> myObjects = mapper.readValue(json, new TypeReference<List<Map<String, MyObject>>>() {
        });

Or else change whatever is generating this json to ditch the inner Map (IMHO that'd be better).

share|improve this answer
1. Yes I know, your example is like implementing a wrapper. This is not what I want to do. – jakob Aug 31 '11 at 14:07
2. I can't ditch the inner map since I do not have power over the application – jakob Aug 31 '11 at 14:08
3. Thank you, I fix! – jakob Aug 31 '11 at 14:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.