What are the inheritance mapping models in hibernate?
Answer / 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 |
What is dirty read problem in hibernate?
What is proxy in hibernate?
Can I use jpa without hibernate?
What are the advantages of hibernate?
What is orm tool?
How many types of association mapping are possible in hibernate?
What is the purpose of mapping?
What are the orm tools?
Is hibernate a middleware?
What is a hibernate xml mapping document and how does it look like?
What are the different id generating strategies using @generatedvalue annotation?
What is difference between persistent and transient objects?