Is it possible to have an entity class which inherits from another (abstract) entity class from another ejb module?
EclipseLink for example doesn’t create the depending columns in database table of the subclass. It simply ignores the (abstract) superclass entity.
The annotation
@Entitydidn’t work in my project but the annotation@MappedSuperclasswhich is also part of JPA 1.0 now works very well.