JBAS011445: Failed to get adapter for resiliency provider. Org.hibernate.ogm.jpa.HibernateOgmPersistence '

I am trying to deploy an application using hibernate ogm and I always get the error "Failed to get adapter for persistence provider" org.hibernate.ogm.jpa.HibernateOgmPersistence ".

I installed ogm module under WILDFLY_HOME / modules / org / hibernate, but that didn't help.

Do I need to customize something in standalone.xml? Anyone have an idea?

Thanks and best wishes

+1


source to share


1 answer


I had the same problem. By removing the following line from persistence.xml

wildfly made sure it accepts deployment:

<property name="jboss.as.jpa.adapterModule" value="org.jboss.as.jpa.hibernate:4"/>

      



I also had to remove any property for the transaction provider

0


source







All Articles