JsonManagedReference vs JsonBackReference

后端 未结 5 2144
一向
一向 2020-11-27 04:42

I would like to know the difference between @JsonManagedReference and @JsonBackReference in Jackson?

5条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-27 04:56

    I prefer
    @JsonIdentityInfo(generator = ObjectIdGenerators.PropertyGenerator.class, property = "id", scope = Long.class)
    where property is the name of primary key field and scope is Type of it

提交回复
热议问题