Skip to content
Advertisement

Is it possible to add JPA annotation to superclass instance variables?

I am creating entities that are the same for two different tables. In order do table mappings etc. different for the two entities but only have the rest of the code in one place – an abstract superclass. The best thing would be to be able to annotate generic stuff such as column names (since the will be identical) in the super class but that does not work because JPA annotations are not inherited by child classes. Here is an example:

JavaScript

Which I would like to inherit and only specify the child-specific stuff, like annotations:

JavaScript

Any ideas or will I have to create fields, getters and setters in the child classes?

Thanks, Kris

Advertisement

Answer

You might want to annotate MyAbstractEntity with @MappedSuperclass class so that hibernate will import the configuration of MyAbstractEntity in the child and you won’t have to override the field, just use the parent’s. That annotation is the signal to hibernate that it has to examine the parent class too. Otherwise it assumes it can ignore it.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement