Tagged Questions

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.

learn more… | top users | synonyms

10
votes
1answer
2k views

Atomikos vs JOTM vs Bitronix vs?

I am new to JTA and it's underlying transaction managers. Can anyone explain the pros/cons of each of these? Feel free to add others I didn't list in title. Also, don't the major applications ...
8
votes
1answer
2k views

Difference between a “jta-datasource” and a “ resource-local ” datasource?

The terms "jta-datasource" and "resource-local datasource" are a little vague to me. I'm putting down what I am understanding ( or assuming ) and I'd like you to say where I'm right / wrong. The ...
7
votes
6answers
4k views

What is a good open source J2SE JTA TransactionManager implementation?

Basically, what it says on the tin; I need a JTA implementation useable in a J2SE application, ideally one that doesn't carry too much of a framework burden with it.
7
votes
5answers
31k views

Spring JTA TransactionManager config: Supporting both Tomcat and JBoss

I have a web application using JPA and JTA with Spring. I would like to support both JBoss and Tomcat. When running on JBoss, I'd like to use JBoss' own TransactionManager, and when running on Tomcat, ...
6
votes
3answers
829 views

How does UserTransaction propagate?

I have a stateless bean with bean-managed transaction and a method like this: @Stateless @TransactionManagement(TransactionManagementType.BEAN) public class ... { @Resource private ...
6
votes
2answers
3k views

WAS 6.1, JPA with JTA, Hibernate, Spring : data retrieval problem

I'm running an application with the following components: Oracle 9i WAS 6.1.0.23 with WS and EJB3 features pack JPA with Hibernate 3.3.2.GA as provider (with Hibernate-EntityManager 3.4.0) Spring ...
6
votes
3answers
522 views

Propagation of Oracle Transactions Between C++ and Java

We have an existing C++ application that we are going to gradually replace with a new Java-based system. Until we have completely reimplemented everything in Java we expect the C++ and Java to have ...
5
votes
3answers
7k views

Spring / JTA / JPA unit test : Rollback not working

I am trying to test an entity EJB3 with Spring. The EJB itself does not uses Spring and I would like to keep duplications of the production JPA configuration minimal (ie not duplicating ...
4
votes
4answers
567 views

How to kill db transaction that timed out from jboss

I use jboss 4.2.3. It has setting "TransactionTimeout" (in jboss-service.xml), that specifies how long Transaction is allowed to execute. Unfortunately, when the timeout passes, the execution isn't ...
4
votes
1answer
320 views

Can I reuse a UserTransaction instance after commit()?

Is the reusage of the ut instance in the following code correct? UserTransaction ut = (UserTransaction)ctx.lookup("java:comp/UserTransaction"); ut.begin(); doSomeWork(); ut.commit();//Or ...
4
votes
1answer
4k views

The chosen transaction strategy requires access to the JTA TransactionManager or Unable to build EntityManagerFactory

I am using Spring 2.0.6 and Hibernate 3.2.x on apache tomcat5.5,now we planed to changed our hybernate mapping files into hybernate+jpa support mapping files. for that we created files like this ...
4
votes
1answer
140 views

Does EHCache require put() in order for changes to instance to reflect (XA)?

I've started working with EHCache as a transactional cache (XAResource) in a JTA UserTransaction and I'm seeing something which is a bit strange, at least in my mind, and I'd like to understand ...
4
votes
1answer
2k views

Java: Difference betwen UserTransaction and EntityTransaction

Title says it all: What is the difference between a UserTransaction and a EntityTransaction? My rudimentary understanding is that UserTransaction is used when JTA is required (e.g. to do queries on ...
4
votes
1answer
3k views

What is difference between @Resource UserTransaction and EntityManager.getTransaction()

Can anybody explain what is difference between : @Resource UserTransaction objUserTransaction; and EntityManager.getTransaction(); And also what is container managed transaction? and how should ...
4
votes
1answer
7k views

hibernate, mysql, glassfish v3, and JTA datasource

I'm attempting to use hibernate entity manager with mysql and glassfish. I'm getting the following error when attempting to use a JTA datasource: Caused by: org.hibernate.HibernateException: The ...
4
votes
2answers
3k views

persistence-unit as RESOURCE_LOCAL or JTA?

1.may i know what is the different of both? both also supported by all database right? 2. jpa transactionmanager and jta transactionmanager different? can explain?
4
votes
2answers
243 views

Simulation of long-running Oracle DB query

What is the simplest (preferably without any new table creation) way of running a database query which takes long time (at least several minutes) in Oracle DB?
4
votes
4answers
863 views

Is there an open-source solution to XA-transactional file access in Java?

Is it possible to make XA-transactional access to the file system in Java? I want to manipulate files within the boundaries of a transaction and my transaction must participate in a distributed ...
3
votes
1answer
305 views

Transaction synchornization registration problem

For our web application built with Seam with have a bunch of server test cases. These run on multiple systems (Mac OS X and Linux); normally, you can clone the repository and run the test cases ...
3
votes
1answer
153 views

managed vs jta session scope in Hibernate

I was going through 'Java Persistence with Hibernate' book and got stuck at Page#494. We do extending a conversation by setting hibernate.current_session_context_class to managed; does that mean now I ...
3
votes
1answer
288 views

How to debug CMT transaction boundaries?

I have been studying jboss CMT , and would like to learn how the transaction works from top to bottom, best way would be printing debug information to the log file, I enabled org.hibernate.SQL , ...
3
votes
1answer
1k views

How to enable custom isolation levels for a JTA Transaction Manager in Spring

Question How do I configure a JtaTransactionManager object with allowCustomIsolationLevels set to true via Spring such that the Spring configuration can be used across multiple application servers? ...
3
votes
3answers
2k views

Using Spring defined transactionManager in JPA/Hibernate

Suppose you use JPA with Spring, with Hibernate as JPA implementation. JPA transaction mode is "JTA", so you need to pass the container transactionManager to Hibernate. The classical answer is to set ...
3
votes
2answers
746 views

Spring/JTA/JPA DAO integration test doesn't rollback?

My DAO integration tests are failing because entities created during the tests are still in the database at the start of the next test. The exact same behavior is seen from both MySQL 5 and H2. The ...
3
votes
1answer
197 views

JTA Synchronization and Timeouts

When using the Java Transaction API (JTA) and I register a Synchronization with the current transaction, will the afterCompletion() method be called if the transaction times out? If so, when will the ...
3
votes
2answers
759 views

Looking for a NoSQL DB with JTA support

Are there any reliable and well-known NoSQL DBs available that support JTA transactions? In my application I need to store some data to the RDBMS DB and some data to the NoSQL DB in the same ...
3
votes
2answers
7k views

How to use JTA support in Tomcat 6 for Hibernate?

They recommend using JTA transaction support in JEE environment. But how to configure JTA in Tomcat6 so that Hibernate Session could use it ? Starting with version 3.0.1, Hibernate added the ...
2
votes
1answer
37 views

Can I use two different entity managers that point to the same datasource in one transaction?

I'm using spring with JPA. And I've got two EntityManagers that contain different entities (different modules of one application), and both point to the same datasource. Can I use both of them in one ...
2
votes
0answers
24 views

Do @Service JBoss EJB's support transactions?

Does anyone know if JBoss @Service EJB's support transactions? I'd like to work with an EntityManager but am getting "EntityManager must be used within a transaction" errors. Explicitly specifying ...
2
votes
1answer
43 views

Does jboss handle managed Entity Manager concurrency issues for me?

It seems that the Entity Manager instance jboss manages and provides is a proxy to the actual implementation bound to a persistence context. This actual implementation gathers the isolation provided ...
2
votes
1answer
65 views

When do I use XA datasource and 2 phase commit

Can someone please explain the use of XA dataSource and how transaction management works in an XA datasource ? How is XA datasouce and 2 Phase commit related?
2
votes
1answer
58 views

MDB activation for JMS message before the JTA transaction is committed

I need synchronize JTA transaction with send JMS message - MDB should be activated after client JTA transaction commit. This should by possible when use XAConnectionFactory, but doesn't work in my ...
2
votes
0answers
79 views

How do I tell if my EntityManager is using JTA or RESOURCE_LOCAL datasource?

I have a utility class as shown below. I want to be able to use this class with either RESOURCE_LOCAL or JTA persistence units. If I change the persistence.xml from JTA to RESOURCE_LOCAL I shouldn't ...
2
votes
1answer
138 views

Multiple (Tomcat + ActiveMQ + Mysql) Transaction Management

We have Multiple Tomcat providing web services for our internal product. Tomcat, Active MQ servers are different Web services call sequence Tomcat Receive request Start DB Transaction (Spring ...
2
votes
1answer
58 views

Jboss AP6 Transaction Manager Implementation

I'm just starting to learn Jboss AP6 and I have a few questions: I created Local Tx Datasource (MySql Database)and can access it in my code using JNDI. Now I would like to create kind of Transaction ...
2
votes
1answer
72 views

When should Transaction.delistResource() be called?

We utilize in-memory LRU caches for several different models across our application. To avoid issues arising from transactions being rolled back (like stale entries), a notion of transactional caches ...
2
votes
1answer
262 views

Two phase commit transaction in Java EE 5

I want to know that how can I do two phase commit transaction by using Java EE5...I am using EJB with JPA which has hibernate configured with MySql. I just want to use JAVA EE specification for ...
2
votes
2answers
181 views

JMS and JTA Transactions in JEE

I think I am not getting something right with JMS and JTA. I am running in a JEE container with all CMTs. Here is what I am doing: In an SLSB, write something to the database From the same method of ...
2
votes
1answer
220 views

how to share one transaction between multi threads

We meet an scenario that works with multi thread. In the main Thread, do some logic and update the database, in a point, it will call another service to update database, which is run in another ...
2
votes
2answers
200 views

Accessing transaction status in container managed beans

I have a @Stateless EJB using container managed transaction. Is there a way to access the "status" of javax.transaction.UserTransaction? That is, calling UserTransaction.getStatus() inside the bean ...
2
votes
1answer
665 views

Spring JTA Transaction manager question

We are using jboss managed EntityMangerFactory using following spring bean <jee:jndi-lookup id="entityManagerFactory" jndi-name="persistence-units/myPU"/> Now in our spring bean we use ...
2
votes
1answer
122 views

JTA Datasources without transactions

(Assuming manual enlistment and delistment of resources.) I have a number of XA enabled resources/datasource for which I plan to perform transactional updates. Additionally, some of the XA-enabled ...
2
votes
1answer
120 views

How to fix HSQL DataSource + TxM where identity always return 0

I am using Hibernate to do my ORM stuff w/ HSQL for tests. It seems that a connection is fetched to do the insert and then returned. Straight after that HIbernate gets a connection then tries to fetch ...
2
votes
2answers
317 views

JTA aware JDBC connection pools

I've been looking at a number of JDBC connection pools, but I have the specific requirement that the pool needs to be JTA aware, which leaves me with a short list of Apache DBCP and OW2 XAPool. The ...
2
votes
2answers
897 views

JTA or LOCAL transactions in JPA2+Hibernate 3.6.0?

We are in the process of re-thinking our tech stack and below are our choices (We can't live without Spring and Hibernate due to the complexity etc of the app). We are also moving from J2EE 1.4 to JEE ...
2
votes
2answers
195 views

jta transcations

I have a code for jta transcations as follows: try{ //start jta user transcation utx //commit utx }catch(Exception ex){ try{ //rollback utx }catch(Exception){ //print error ...
2
votes
1answer
259 views

ClassNotFoundException with EHCache-Atomikos

I'm trying to use EHCache's transactional abilities together with Atomikos and Apache Tomcat (for usage with JMS and Hibernate but that's just to assure the sceptics I really need JTA). I'm currently ...
2
votes
1answer
468 views

Hibernate Session scope in JTA transactions vs Open-Session-In-View

Is it correct to say that using JTA Transactions with Hibernate contrasts using the Open-Session-In-View with regards to the session scope? From what I've been able to gather the Session scope in the ...
2
votes
0answers
118 views

Simple JOTM Questions

I'm starting to use JOTM and have a few simple questions: If I start an embedded JOTM instance, can I perform a 2 phase commit between a remote database (with an XA enabled driver) and a local JMS ...
2
votes
3answers
151 views

Transactions (Atomicity property) in EJB 3 apply only to Database Operations - Am I right?

I know that transactions could be used to bring about atomicity. Like if methodOne() methodTwo() methodThree() are clubbed into one transaction, if any of the method fails, the entire operation is ...

1 2 3 4