I am having the hardest time getting a tree structure our of a database using ORM... As it stands now, I am just getting a flat child list out of the database and I know that will not do. I need to be getting out the tree structure. If I throw in the root node, I need to assemble the entire tree. I am thinking I am going to have to do this recursively, but that seems like it would be a lot of database calls. Is there no way that this can be done in the entity beans? For instance, if I have this database structure...
ORGANIZATION_ID | Name | PARENT_ORGANIZATION_ID
--------------------------------------------------
1 | A | 0 -Indicates root
2 | B | 1
3 | C | 2
4 | D | 2
5 | E | 4
6 | F | 1
7 | G | 1
8 | H | 7
9 | J | 8
10 | K | 9
and this stuff inside the JPA entity...
//Parent reference
@ManyToOne
@JoinColumn(name="PARENT_ORGANIZATION_ID")
private Organization parent;
@OneToMany(cascade = {CascadeType.PERSIST, CascadeType.MERGE},
fetch = FetchType.LAZY,
mappedBy= "parent")
@OrderBy("ORGANIZATION_NAME")*/
private List<Organization> childOrgsTree = new ArrayList<Organization>()
How can I turn that into a recursive tree of sorts? Is there a different way to do it, that I just don't see? Share with me your sage wisdom StackOverflow enthusiasts? Or at the very least point me to a decent tutorial on how to get this done!!!!!! Or you could do nothing at al :-( But don't do that last one.