Hi,

Container Managed Persistence refers to Entity Beans, and there are no
Entity Beans anymore in EJB3. So I assume you're refering to Container
Managed Transactions.

The transaction needs to be started after the StatefulKnowledgeSession
has been created; so with CMT you would need to create the session
before the EJB is called. But since the EJB itself is creating the
session, I can think of no standard way to do that as of JavaEE 6. Even
an interceptor should be called after the transaction has begun with CMT.

Probably the easiest for you would be to create an EJB3 interceptor that
deals with the boilerplate (creates/disposes the session and
starts/commits/rolls back the transaction).

Hope this helps,
Nick

On 11-08-17 09:02 AM, houghvw wrote:
> Hi,
> 
> Is there any documentation on how to configure JBPM 5 with container managed
> persistence using EJB3. It works using bean managed persistence. But would
> make life much easier if I did not have to manage the tx myself.
> 
> Regards
> Hough
> 
> --
> View this message in context: 
> http://drools.46999.n3.nabble.com/Using-JBPM-5-with-Container-Managed-Persistence-tp3261549p3261549.html
> Sent from the Drools: User forum mailing list archive at Nabble.com.
> _______________________________________________
> rules-users mailing list
> rules-users@lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/rules-users

_______________________________________________
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users

Reply via email to