I'm having problem when I try to serialize my object using Gson.
@XmlRootElement
class Foo implements Serializable {
private int number;
private String str;
public Foo() {
number = 10;
str = "hello";
}
}
Gson will serialize this into a JSON {"number":10,"str":"hello"}. However, I want it to be {"Foo":{"number":10,"str":"hello"}}, so basically including the top level element. I tried to google a way to do this in gson, but no luck. Anyone knows is there a way for me to achieve this?
Thanks!