I found this suspect if i use the maven to download objectdb.
<dependency> <groupId>com.objectdb</groupId> <artifactId>objectdb</artifactId> <version>2.6.2</version> </dependency>
I got follow Java Warning that tells me that Entity Class will be ignored.
../WEB-INF/lib/objectdb-2.6.2.jar' contains offending class: javax.persistence.Entity. It will be ignored.
If i download the jar File from this site and add the Dependency as an SystemPath all works are fine.
Whats the problem?
<dependency> <groupId>objectdb</groupId> <artifactId>com.objectdb</artifactId> <version>2.6.2</version> <scope>system</scope> <systemPath>${project.basedir}/src/main/resources/mahi/objectdb/objectdb.jar</systemPath> </dependency>