Java Transaction API (JTA) specifies standard Java interfaces between a transaction manager and the parties involved in a distributed transaction system: the resource manager, the application server, and the transactional applications.
I'm using Spring 3.1.0.RELEASE, JUnit 4.8.1, and ultimately deploying my application to a JBoss 4.2 server (I know, I know). As part …
spring transactions junit mocking jtaI was given an "API" in the form of a JAR to do some external accounting operations from my Java-Seam-Hibernate …
java hibernate transactions seam jtaMy Project is war deployment. XXX.war For my project there is a datasource (ds) that is installed in jboss. …
java hibernate persistence jta jboss-eap-7I am reading the Transaction Management of Java EE 7 and I get confused by the concept of nested transaction and …
java jakarta-ee jta java-ee-7 ejb-3.2I have a class with @Transactional annotation (instead of marking it for all of its method). Although i have a …
spring hibernate jpa transactions jtaI switched from Hibernate 4.2 to Hibernate 4.3 and my project is not working any more. I'm getting an HibernateException: Unable to …
hibernate jta atomikosI just updated from Hibernate 4.2.19 to Hibernate 5.1.2. Of course, little it is to say that things are not going as …
java spring hibernate transactions jtaI have a stateless bean with bean-managed transactions, and a method like this: @Stateless @TransactionManagement(TransactionManagementType.BEAN) public class ... { @Resource …
java jakarta-ee ejb jta bean-managed-transactions