|
Well you have combined joined inheritance with discriminator-based inheritance. Hibernate, unlike other JPA providers, does not need the discriminator to make joined inheritance work. This is all laid out in the discussion above.,
If you want to use joined inheritance and do not want to force Hibernate to use its legacy behavior by setting "hibernate.discriminator.ignore_explicit_for_joined" then simply remove the discriminator.
|