2

是否可以通过 JPA(或 Hibernate)中的多个级别持续存在?我有一个表“资源”,其中每个资源都可以是另一个资源的“子”。这可以通过多个级别发生。我正在使用连接表来包含关系。

我想要达到的就是这个。

resource                                        resource_relations
========                                        ==================
resource_type | resource_name                   parent   | child
------------------------------                  --------------------
type1         | P                               P        | C
type2         | C                               C        | G  
type3         | G

我的持久性实体看起来像这样。

资源

private String name;
private ResourceType resourceType;

public Resource(resourceType, name){ ... }   

@OneToMany(mappedBy = "parent", cascade = CascadeType.PERSIST)
private Set<ResourceRelation> components = new HashSet<ResourceRelation>();

@OneToMany(mappedBy = "child", cascade = CascadeType.PERSIST)
private Set<ResourceRelation> parents = new HashSet<ResourceRelation>();

public void addComponent(Resource r) { /*add "r" to "components"*/ }

资源关系

@ManyToOne (cascade = CascadeType.PERSIST)
private Resource parent;

@ManyToOne (cascade = CascadeType.PERSIST)
private Resource child;

现在,我执行以下语句:

parent = new Resource(type1, P);
child = new Resource(type2, C);
grandChild = new Resource(type3, G);
child.addComponent(grandChild);
parent.addComponent(child);
persist(parent);

但是,只有 P 和 C 变得持久,而 G 没有。我该怎么做呢?

4

1 回答 1

3

您的映射是错误的,您不应该明确处理包含资源之间关系的表。Hibernate 会为你做这件事!这里只需要 Resource 类:

private String name;
private ResourceType resourceType;

@OneToMany(cascade = CascadeType.PERSIST)
private Set<Resource> components = new HashSet<Resource>();

@OneToMany(cascade = CascadeType.PERSIST)
private Set<Resource> parents = new HashSet<Resource>();
于 2013-02-20T10:12:30.217 回答