views:

201

answers:

2

Does hibernate has support for hierarchical data in a database where

+4  A: 

You can try this

Sly
+1  A: 

Hibernate supports Modified Preorder Tree Traversal in that lets you define the left/right properties. It does not support hierarchic queries however, but it's pretty trivial to re-hierarchize objects out of linear query if you order that by left value.

fforw