my question is very similar to Changing the type of an entity preserving its ID, but instead i´m using InheritanceType.JOINED instead of Table_per_class.
This means i do
Just like in the question you've linked to, the answer is "you can't do this using Hibernate API".
The reason is actually quite clear - Hibernate aims to make persistence as transparent as possible and, therefore, can't allow you do to things with persistent objects that you wouldn't be able to do with normal Java ones. Once you create an instance of Person
(in plain java), it's always a Person
. It will NEVER be a Doctor
. The best you can do is to create a Doctor
instance and copy Person
's attributes to it.
Unlike plain java, however, with Hibernate you can cheat and achieve what you want :-) but it has to be done via native SQL. In your method you'll need to:
Person
instance from session (and 2nd level cache if applicable)Person
instance) into Doctors
table. That's the part that has to be done as native sql, but you can define it as named query and set the above id as parameter. Note that if have any constraints on Doctor
properties, you'll need to make sure the values you insert satisfy them.Person
instance - which will now be loaded as Doctor
.