Is it possible to map a subclass to its superclass by OneToOne relationship base on their primary key properties in Hibernate? How can I implement this?
|
feedback
|
|
You can do it with the JOINED inheritance strategy like this:
This way, the id will be both in the | ||||
|
feedback
|
|
You should look at Inheritance Mapping in the Hibernate reference to understand inheritance mapping. | |||
|
feedback
|