直接自引用导致循环超类问题JSON

时间:2017-08-16 13:09:31

标签: java json inheritance jax-rs

我尝试了一些我在搜索时发现的东西,但没有任何帮助,或者我没有正确实现它。

错误我正在

Direct self-reference leading to cycle (through reference chain: io.test.entity.bone.Special["appInstance"]->io.test.entity.platform.ApplicationInstance["appInstance"])

这两个都扩展了基本实体,而在基类(超类)中它也有appInstance

基本实体看起来与此类似

@MappedSuperclass
public abstract class BaseEntity implements Comparable, Serializable {

@ManyToOne
protected ApplicationInstance appInstance;

//getter & setter

}

应用程序实体看起来像这样

public class ApplicationInstance extends BaseEntity implements Serializable { 
   private List<User> users;
// some other properties (would all have the same base and application instance . User entity will look similar to the Special.)
}

特殊实体

@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "objectType")
@JsonIgnoreProperties({"createdBy", "appInstance", "lastUpdatedBy"})
public class Special extends BaseEntity implements Serializable {

    @NotNull
    @Column(nullable = false)
    private String name;

    @Column(length = Short.MAX_VALUE)
    private String description;

    @NotNull
    @Column(nullable = false)
    private Double price;

    @OneToOne
    private Attachment image;

    @Enumerated(EnumType.STRING)
    @ElementCollection(targetClass = SpecialTag.class)
    @CollectionTable(name = "special_tags")
    @Column(name = "specialtag")
    private List<SpecialTag> specialTags;

    @Temporal(TemporalType.TIME)
    private Date specialStartTime;

    @Temporal(TemporalType.TIME)
    private Date specialEndTime;

    @Enumerated(EnumType.STRING)
    @ElementCollection(targetClass = WeekDay.class)
    @CollectionTable(name = "available_week_days")
    @Column(name = "weekday")
    private List<WeekDay> availableWeekDays;

    @OneToMany(mappedBy = "special", cascade = CascadeType.REFRESH)
    private List<SpecialStatus> statuses;

    @OneToMany(mappedBy = "special", cascade = CascadeType.REFRESH)
    private List<SpecialReview> specialReviews;

    @Transient
    private Integer viewed;

    private Boolean launched;

    @OneToMany(mappedBy = "special")
    private List<CampaignSpecial> specialCampaigns;


  @Override
  @JsonIgnore
  public ApplicationInstance getAppInstance() {
    return super.getAppInstance(); 
  }
}

Special中的所有实体都继承自BaseEntity,其中包含AppInstance

然后我有一个方法来获得特殊的

@GET
@Path("{ref}")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(value = MediaType.TEXT_PLAIN)
public Special findByGuestRef(@PathParam("ref") String pRefeference) {
  // find the special and return it
 return special;
}

在特殊实体上我尝试了以下

  • 添加了jsonIgnoreProperties
  • 为appInstance添加了一个覆盖,以便使用@JsonIgnore
  • 进行批注
  • @JsonIdentityInfo

上述

的链接

这些解决方案都不起作用。我做错了吗?

注意:是否也可以编辑特殊,因为其他实体位于不同的包中,并且不想编辑它们。

2 个答案:

答案 0 :(得分:2)

通常在响应中排除属性就像向其getter添加@JsonIgnore注释一样简单,但如果您不想将此注释添加到父类,则可以覆盖getter然后添加注释:

public class Special extends BaseEntity implements Serializable {
    ...
    @JsonIgnore
    public ApplicationInstance getAppInstance() {
        return this.appInstance;
    }
    ...
}

注意:由于有多个框架,请确保您使用的是正确的@JsonIgnore注释,否则将被忽略,例如,请参阅this answer

另一个选项,更“手动”,只是为响应创建一个bean,它将是Special实例的一个子集:

@GET
@Path("{ref}")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(value = MediaType.TEXT_PLAIN)
public SpecialDTO findByGuestRef(@PathParam("ref") String pRefeference) {
  // find the special and return it
 return new SpecialDTO(special);
}


public class SpecialDTO {

    //declare here only the attributes that you want in your response

    public SpecialDTO(Special sp) {
        this.attr=sp.attr; // populate the needed attributes
    }

}

答案 1 :(得分:0)

对我而言,问题似乎出现在Special对象和其中正在初始化的字段中。 我猜在序列化发生时检测到循环引用。 类似于:

class A {
    public A child;
    public A parent;
}

A object = new A();
A root = new A();
root.child = object;
object.parent = root;

在上面的代码中,每当您尝试seralize这些对象中的任何一个时,您将面临同样的问题。 请注意,不建议使用公共字段。

我建议您查看您的特殊对象及其中的参考设置。