I need help in mapping a tree object structure. I'd like to store the tree in the following tables (truncated for simplicity):
Category
id
title
parentId
TreePath
id
ancestorId
So, if I have the following tree:
1
/\
2 4
/
3
The tables would look like:
Category
1 "One" 1
2 "Two" 1
3 "Three" 2
4 "Four" 1
TreePath
2 1
3 1
3 2
4 1
(This is based on the article
http://fungus.teststation.com/~jon/tree ... ndling.htm)
In the object model, a Category would have a reference to its parent, but would NOT have references to its ancestors. This object structure and table structure allows for easy movement of nodes within the tree and efficient queries when performing recursive subtree searches.
The question I have, is how to create the mapping. I need to insert/modify rows in the TreePath table without having direct references to ancestors in the object model. It would seem that I would need a way to store a single object within multiple tables (a Category object into the Category and TreePath tables). However, I don't think that Hibernate allows this.
Any ideas on how to make this work without adding native insert SQL statements?
Thanks.
Scott