次の形式のクラスがあるとします。
Class A
{
Collection(Item) x= new ArrayList(Item)();
Collection(Link) y= new ArrayList(Link)();
.
.
//You can add data to the Item and Link classes
}
私たちが持っている場所
Class Item {
int x;
getX();
setX();
}
同様に
class Link {
..//get and set methods
}
インスタンスを作成する場合:A obj= new A();
ObjectMapperマッパーを使用してobjをシリアル化するにはどうすればよいですか? それはまだ同じでしょうか?それは `mapper.writeValue(writer, obj); です。
出力形式を次のようにします。
{
"x": []
"y": []
}