JBoss Community

Re: Issue : JTA EntityManager cannot use getTransaction()

created by Prashanth Karnam in jBPM - View the full discussion

This is how my persistence looks like

 

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

 

<persistence version="1.0"

        xsi:schemaLocation="http://java.sun.com/xml/ns/persistence

     http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd

     http://java.sun.com/xml/ns/persistence/orm

     http://java.sun.com/xml/ns/persistence/orm_1_0.xsd"

        xmlns:orm="http://java.sun.com/xml/ns/persistence/orm" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

        xmlns="http://java.sun.com/xml/ns/persistence">

 

        <persistence-unit name="org.jbpm.task" transaction-type="JTA">

 

                <provider>org.hibernate.ejb.HibernatePersistence</provider>

                <jta-data-source>java:SDSOracleDS</jta-data-source>

                <mapping-file>META-INF/orm.xml</mapping-file>

                <class>org.drools.persistence.info.SessionInfo</class>

                <class>org.jbpm.persistence.processinstance.ProcessInstanceInfo</class>

                <class>org.drools.persistence.info.WorkItemInfo</class>

 

            <properties>
                    <property name="hibernate.hbm2ddl.auto" value="create-update" />
                    <property name="hibernate.ejb.cfgfile" value="META-INF/hibernate.cfg.xml" />
                    <property name="hibernate.transaction.manager_lookup_class" value="org.hibernate.transaction.JBossTransactionManagerLookup" />
            </properties>

 

 

Can anyone help how it has to be configured to avoid the issue/exception.

Reply to this message by going to Community

Start a new discussion in jBPM at Community