JOIN « Transaction « JPA Q&A





1. Join open postgresql transaction    stackoverflow.com

Is there a way for getting and using an existing (open) transaction ? I have an application using JPA/Hibernate that inserts some data. Within the session (and so the transaction), I want ...

2. Join current transaction    forum.hibernate.org

3. Hibernate JPA 1.0 join fetch not work without JTA Tx    forum.hibernate.org

Hi, I've been using Hibernate JPA 1.0 which comes with 3.4 GA. In the persistence.xml, I configured JTA as transaction type. I use named query and join fetch. It works well when my SLSB starts a Tx (e.g. set transaction attribute to REQUIRED), and then calls Hibernate persistence function. However, when no Tx is started (e.g. set transaction attribute to NOT_SUPPORTED), ...

4. AssertionFailure: Transaction MARKED_FOR_JOINED after isOpen    forum.hibernate.org

Beginner Joined: Thu Mar 18, 2004 8:11 am Posts: 38 Location: Italy Uhu? I just upgraded after having problems with a hql query, and got this. What does it mean? I'm using hibernate in a web app on jboss + seam 20060511. It happens either using SeamPhaseListener (with a transaction-demarcating ServletFilter on top of it) OR SeamExtendedManagedPersistencePhaseListener. Hibernate version: 3.1.3 Full ...

5. How to join new session in post-insert listener to JTA Tx?    forum.hibernate.org

I want to create a new session in the post-commit event listener and join it to the current JTA transaction running. I have been having problems so would like to know the correct way to create the new session and join the JTA transaction within the listener? FYI...I am running in a CMT environment within JBoss (i.e. Stateless CMT EJB is ...