当前位置:  开发笔记 > 编程语言 > 正文

杰克逊:@JsonIdentityInfo对象而不是id

如何解决《杰克逊:@JsonIdentityInfo对象而不是id》经验,为你挑选了0个好方法。

有没有办法用@JsonIdentityInfo影响序列化过程,以便它插入整个对象而不是引用id?

@Entity
@JsonIdentityInfo(
        generator = ObjectIdGenerators.IntSequenceGenerator.class,
        property = "linkLabel")
public class LinkLabel implements Serializable {
   //...
}

因此,杰克逊应该包含整个对象,而不是引用id为1的"otherObj".

{
    "objects": [{
            "id": 1,
            "otherObj": [{
                    "id": 1,
                    ...
                }, {
                    "id": 3,
                    ...
                }]
        },
            "id": 2,
            "otherObj": [1] <-- referencing otherObj with id 1
    ]
}

像这儿:

{
    "objects": [{
            "id": 1,
            "otherObj": [{
                    "id": 1,
                    ...
                }, {
                    "id": 3,
                    ...
                }]
        },
            "id": 2,
            "otherObj": [{
                    "id": 1,  <-- desired format, whole object
                    ...
                }]
    ]
}

我们有双向引用,因此@JsonManagedReference和@JsonBackReference无法正常工作.此处描述了此行为(http://wiki.fasterxml.com/JacksonFeatureObjectIdentity).

推荐阅读
jerry613
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有