开发者

List becomes String when Marshalling object to json

开发者 https://www.devze.com 2023-04-01 17:38 出处:网络
I\'m getting a pretty strange error when marshalling my object to json. My object is annotated like this.

I'm getting a pretty strange error when marshalling my object to json. My object is annotated like this.

My class:

@XmlRootElement(name = "myobject")
public class MyObject {

private List<String> contactPersonsForMyObject;

@javax.xml.bind.annotation.XmlElement()
public List<String> getContactPersonsForMyObject() {
    return contactPersonsForMyObject;
}

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

Everything works fine except for that if the List contactPersonsForMyObject contains only one value it get's ma开发者_JS百科rshalled to a string which ofcourse creates problems since the application consuming this expects a list.

The marshalled object:

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

Why does this happen and how do I force it to create a list with one value?


Try using Jackson to handle processing your objects into JSON, it solved the same array problem for me in the past. If you are using RESTEasy (version 1.2 GA) with Maven, this link should help you get things setup to use Jackson to serialize objects to JSON.

This article also has some useful information for integrating Jackson with RESTEasy. Hope this helps!

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号