我有一个类别类:
@Embeddable @NoSql(dataFormat=DataFormatType.MAPPED) 公共类 Category 实现 Serializable {
@Id
@GeneratedValue
@Field(name="_id")
private String id;
private String name;
@Embedded
@ElementCollection(targetClass = Category.class)
private List<Category> children = new ArrayList<>();
}
如果我坚持下去,它会陷入无限循环。
有什么建议么?