@MappedSuperclass static weaving with EclipseLink and multiple jars
问题 My entities objects are scattered in multiple jars. In jar A I have a base class name MyBase which is annotated with @MappedSuperclass. In jar B there is an entity class which derives from MyBase. The problem is that because the weaving is done in the context of the jar file (I'm using the maven plugin) the base class (MyBase) isn't instrumented (although it should). If I move the derived class from jar B to A then the weaving process will handle the base as well. Since I'm working on a large