How do you work with a composite pattern using hibernate and domain design?

Does hibernate support hierarchical data in a database where

+3
source share
2 answers

Hibernate supports a modified pre-order tree trace that allows you to define left / right properties. However, it does not support hierarchical queries, but it is rather trivial to re-hierarchize objects from a linear query if you order it by the left value.

+1

Source: https://habr.com/ru/post/1723344/


All Articles