4
隨着@JsonIdentityInfo,我們可以做這樣的事情:@JsonIdentityInfo自定義引用序列化?
{
"@id" : 1,
"value" : 13,
"next" : {
"@id" : 2,
"value" : 42,
"next" : 1
}
}
參考爲基本類型。 有可能將參考序列化爲對象嗎?例如:
{
"@id" : 1,
"value" : 13,
"next" : {
"@id" : 2,
"value" : 42,
"next" : {"$ref":1}
}
}
編輯
有用的鏈接
- An attempt to create a JSOG plugin to handle this (by Jeff Schnitzer)
- Discussion on jackson user-list