【发布时间】:2019-09-07 10:25:15
【问题描述】:
@Entity
public class Domain {
@Id
private long id;
/** The parent domain, can be null if this is the root domain. */
@ManyToOne
private Domain parent;
/**
* The children domain of this domain.
*
* This is the inverse side of the parent relation.
*
* <strong>It is the children responsibility to manage there parents children set!</strong>
*/
@OneToMany(mappedBy = "parent")
private Set<Domain> children = new HashSet<Domain>();
我知道如何创建如下表: 创建表域(id int(10)等,但我不明白如何插入域父级。 通常我在树应用程序中需要帮助,需要代表关系的父子关系
【问题讨论】:
-
查找多对一关系并加入列。
标签: java spring hibernate hibernate-mapping