I'm tying to implement some tree-like structure with JPA. I have a "folder" entity and a "test" entity. Folder can contain both folders and tests. Test doesnt contains anything.
Both test and folder have a Node superclass, looks like this:
@Entity
@Inheritance(strategy = InheritanceType.JOINED)
public class Node implements TreeNode, Serializable{
private Long id;
String description;
String name;
@ManyToOne
Node parent;
...getters, setters and other stuff that doesnt matter...
}
And here is the Folder class:
@Entity
public class Folder extends Node{
@LazyCollection(LazyCollectionOption.FALSE)
@OneToMany(cascade=CascadeType.ALL, **mappedBy="parent"**)
List<Folder> folders;
@LazyCollection(LazyCollectionOption.FALSE)
@OneToMany(cascade=CascadeType.ALL, **mappedBy="parent"**)
List<Test> tests;
...
}
So the main problem is the mappedBy property, which relates to superclass property not overriden in ancestor, cause I got such exception:
Exception while preparing the app : mappedBy reference an unknown target entity property: my.test.model.Folder.parent in my.test.model.Folder.folders
There is might be some tricky mapping over "folders" and "test" properties of Folder class, and I need a little help with that.
EDIT: I specified both folders and tests properties of Folder class with targetEntity=Node.class:
@LazyCollection(LazyCollectionOption.FALSE)
@OneToMany(cascade=CascadeType.ALL, mappedBy="parent",targetEntity=Node.class)
List<Folder> folders;
@LazyCollection(LazyCollectionOption.FALSE)
@OneToMany(cascade=CascadeType.ALL, mappedBy="parent",targetEntity=Node.class)
List<Test> tests;
And its gets work. But works not fine. Now both tests and folders mapped to both properties (I dont know why I'm not geting exceptions), when I need to get them separately.
So I'm still looking for a suitable mappings to achieve that. I would appriciate any help.