I added the class enhancer to my build script and I get the expected output of a list with the enhanced classes.
Now if I try to deploy my created application I get the following error:
Caused by: java.lang.AbstractMethodError: Receiver class org.test.app.base.models.Data does not define or inherit an implementation of the resolved method 'abstract void __odbSetTracker(com.objectdb.spi.Tracker)' of interfacecom.objectdb.spi.Trackable. at com.objectdb.o.OBC.aa(OBC.java:465) at com.objectdb.o.OBC.ai(OBC.java:979) at com.objectdb.o.OBC.Zc(OBC.java:800) at com.objectdb.o.SRB.a(SRB.java:162) at com.objectdb.o.QRR.h(QRR.java:565) at com.objectdb.o.QRR.i(QRR.java:225) at com.objectdb.jpa.JpaQuery.getResultList(JpaQuery.java:726)
The Data class is a simple @Entity which extends a @MappedSuperclass.
Without the enhancement everything works fine.
Regards
Kevin