adspace
What are the inheritance mapping models in hibernate?
Answer Posted / Rachna
In Hibernate, there are four main inheritance mapping strategies: single table per class hierarchy (JOINED), single table per subclass (TABLE_PER_CLASS), table-per-concrete-class (TABLE_PER_CONCRETE_CLASS), and embeddable superclasses. These strategies determine how Hibernate maps classes in an inheritance hierarchy to database tables.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers