Is it possible to persist through multiple levels in JPA (or Hibernate)? I have a table "resource" where each resource can be a "child" of another resource. This can happen through multiple levels. I am using a join table to contain the relationship.
What I want to achieve is this.
resource resource_relations
======== ==================
resource_type | resource_name parent | child
------------------------------ --------------------
type1 | P P | C
type2 | C C | G
type3 | G
My persistence entities look like this.
Resource
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"*/ }
ResourceRelation
@ManyToOne (cascade = CascadeType.PERSIST)
private Resource parent;
@ManyToOne (cascade = CascadeType.PERSIST)
private Resource child;
Now, I execute the following statements:
parent = new Resource(type1, P);
child = new Resource(type2, C);
grandChild = new Resource(type3, G);
child.addComponent(grandChild);
parent.addComponent(child);
persist(parent);
However, only P and C are getting persistent but not G. How do I go about it?