|
At least some progress, the exception type changes
Can you double-check that you added the dependency to the OGM MongoDB backend module to your MANIFEST.MF (or jboss-deployment-structure.xml) as described here:
Dependencies: org.hibernate:ogm services, org.hibernate.ogm.mongodb:main services
<jboss-deployment-structure>
<deployment>
<dependencies>
<module name="org.hibernate" slot="ogm" services="export" />
<module name="org.hibernate.ogm.mongodb" slot="main" services="export" />
</dependencies>
</deployment>
</jboss-deployment-structure>
|