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.
0
votes
0answers
11 views
How to use JTA transaction in tomcat 5.5
My application is running in wepsphere 6.1.Need to migrate to Tomcat server.
Application uses:
Spring 2.5
Hibernate 3.0
JSF 1.1
JDK1.5
I have googled and found that Tomcat 5.5 is suitable version.
...
0
votes
0answers
12 views
Joining two transactions spring bitronix
We use this bitronix.tm.resource.jdbc.PoolingDataSource with OracleXADataSouce, with our typical spring application context looking like this
<bean id="bitronixTransaction" ...
0
votes
1answer
43 views
Spring+Hibernate(with 2nd level cache enabled) in Tomcat(clustered), do I need JTA?
As the title says, I have a web application which should be able to run on cluster with hibernate 2nd level cache enabled and org.springframework.orm.hibernate.HibernateTransactionManager as a ...
1
vote
0answers
18 views
Why does JTA have a Transaction and a UserTransaction interfaces to represent transaction?
The JTA api defines two interfaces
Transaction http://docs.oracle.com/javaee/6/api/javax/transaction/Transaction.html
UserTransaction ...
1
vote
1answer
43 views
JPA - Container Managed Persistence doesn't persist entity -JTA
I m trying to integrate Spring and JSF i stuck on persisting object. I dont want to handle transaction (begin - commit etc)
After some googling i could find an answer give what i need in this link ...
0
votes
0answers
78 views
Java/Spring/Hibernate/JTA Transaction Manager, Foreign Key Constraints Fails for New Objects
We are working on an application where we are trying to utilize the JTATransactionManager under Spring using both Hibernate, for the our internal database, and "regular" JDBC, for some external ...
2
votes
0answers
42 views
SPRING + JTA transaction unexpectedly rolled back
I've trouble with spring+JTA!
I've a function annotated to @Transactional(propagation=Propagation.REQUIRED_NEW) and this function runs good when I store a lot of data. But I got an exception when I ...
0
votes
1answer
52 views
JTA EntityManager without manual commits
I'm trying to move out my project from Seam 3.
Now I'm stuck on JTA transactions after switching off Seam Faces module. There was integrated transaction management. Transactions were begun and commit ...
0
votes
0answers
43 views
Transaction commit in HttpSessionListener not persisting to DB
I recently started using JBossTM in order to use JTA over multiple database connections, which was very successful. If I try to perform a transaction from any controller it works without any issues.
...
0
votes
1answer
50 views
EJB Transaction not Comitted unless invoking EntityManger#flush()
My application uses Hibernate as JPA provider and JBOSS 6.1.0-final as server. And the transaction is CMT (Transaction type in my persistence.xml is JTA). As most tutorial suggests. transaction in a ...
5
votes
2answers
135 views
@Stateless webservice with JPA+JTA: How to commit changes of managed entity?
I have the following simple webservice declared as @Stateless EJB running on GlassFish 3.1.2.2 with EclipseLink 2.4.1 using a JTA DataSource to connect to a MySQL database:
@POST
...
1
vote
0answers
149 views
Tomcat 7 (JBoss EWS 2.0) + MySQL 5.1 + Hibernate - OpenShift - No persistence unit found
Every time I try to reach my app on OpenShift I receive the "No Persistence provider for EntityManager named appname" error.
I have been struggling to resolve this problem for two consecutive days ...
0
votes
0answers
119 views
Why transaction can't commit in a self-invoked ejb method with @REQUIRES_NEW Annotation
First I want to explain my self-invoked ejb method in this situation. I have a stateful session bean with a method which starts a new transaction (Annotated by @REQUIRES_NEW). To invoke this method ...
0
votes
0answers
26 views
Transaction Control across multiple DBs using XA
can anyone point me to a complete spring example with complete configuration for 2 phase commit on two different DBs using XA (PlatformTransactionManager).
Regards,
Eman Azmy
5
votes
2answers
87 views
Best way to handle JPA merge?
I'm new to the whole JPA thing so I have multiple questions about the best way to handle JPA merge and persist.
I have an user object which should be updated (some values like date and name). Do I ...
1
vote
0answers
23 views
Why web services cannot participate in Java EE transactions?
I'm trying to understand why a web service cannot be a part of a Java EE transaction like a db operation.
I.e from inside an EJB if I make a DB update and a web service call, there is no way to bind ...
0
votes
2answers
45 views
Using EJB transaction, when I insert a record in a main outer transaction, I can't find it in the inner transaction(Annotated by REQUIRES_NEW)
My goal is inserting a record into my database, then updating it in a new transaction.
I try it like this:
@PersistenceContext(unitName="Table")
private EntityManager manager;
@EJB
private ...
0
votes
0answers
140 views
Envers not inserting records in version tables with JTA Atomikos
I am using Spring 3.1, Spring data jpa 1.2 with Hibernate 3.5.1 and envers 3.5.1. The issue is when using envers my _AUD table is getting created but the data is not inserted in the AUD tables. I ...
2
votes
1answer
140 views
How to enlist spring JDBC transaction within a XA-transaction?
Using spring's [3.1] SimpleJdbcCall to call a stored procedure in a Oracle db.
Again, there is another transaction using JPA 2.0 [hibernate 3.6.8]. Both of them needs to be committed in a single xa ...
0
votes
1answer
39 views
jboss ignores requires_new after restart
I’m using jboss and cmt and have seen strange behaviour when using requires_new on an ejb method that I loop over from another bean to insert some records.
I see that intermittently after restarting ...
0
votes
1answer
69 views
How to stop timer from retrying in Weblogic 10.3 (EE container) when transaction is rolled back due to SQLException (timeout)?
Basically i have EJB3 timer calling another EJB 3 (DAO) - this call is wrapped in catch block. The other EJB throws timeout SQL Exception when tries to acquire a connection to DS (throws exception to ...
0
votes
0answers
21 views
Atomikos Hibernate Error
I am getting IncompatibleClassChangeError: Class com.atomikos.icatch.jta.UserTransactionManager does not implement the requested interface javax.transaction.TransactionManager while setting up ...
1
vote
1answer
156 views
Distributed Transactions Java JMS
I was wondering if I can get some ideas on how to handle a design issue I'm facing. For simplicity sake, let's say I have 3 endpoints running on 3 different machines/jvms on Tomcat. The endpoints ...
1
vote
1answer
67 views
JTA nested transaction lock
Environment:
We have an application that is deployed in a JBoss 4.2.3.GA server and which is using Hibernate 3.4 and JTA 1.0.
There's an importer which creates or updates certain entities and then ...
0
votes
1answer
54 views
JTA for Standalone java applicaion
I need to have transaction management in a java standalone application. In my application,i do a Database update and after that send messages to a MQ.Both the database update and MQ sending should be ...
1
vote
0answers
59 views
Hibernate moving from JTA eager to lazy loading and session per thread
I am using in hibernate conf:
<property name="hibernate.current_session_context_class">thread</property>
And :
private static final ThreadLocal<Session> threadLocal = new ...
1
vote
1answer
76 views
JTA & MySQL - How to Retrieve records from database
I am new to JTA and I need a method to retrieve some some elements from the database. I can do this through EntityManager but that works only for ResourceLocal.
I want to know how can I do this:
...
0
votes
3answers
64 views
ResourceLocal to JTA
I am developing an web application and I have to use JTA which I never used. I started using EntityManager but it seems not to work here. When I use EntityManager I get this message:
Only persistence ...
0
votes
0answers
94 views
ms sql commit failed, rollback not complete
I have a parent and child table in MS SQL 2008 and trying to perform a save call using hibernate with cascade enabled.
Table specs that matter: parent table has an identity column and child table has ...
0
votes
1answer
76 views
Injecting dao by @EJB
I've just started to work with EJB. I want to recieve some data from database using JTA.
My entity:
@Entity
@Table(name = "User")
@NamedQuery(name = "User.findByAddressName",
query = ...
0
votes
1answer
56 views
Specify database for JPA Table geneartion on deployment
I have an application with two databases and upon deployment I want to generate the tables for the entities in different two databases. For example if I have Entity1, Entity2 and Entity3, I want ...
0
votes
1answer
67 views
Use of JTA with Hibernate
What is the main objective to use JTA in a web application with Hibernate and Spring ?
10
votes
2answers
456 views
Why different persistence units with separated data sources query the same data source?
I'm developing a webapp which needs access to two different database servers (H2 and Oracle).
The container is an Apache Tomee 1.5.1 and I'm using the Java EE stack with libraries provided in it (JSF, ...
0
votes
2answers
135 views
how to get XADatasource using JNDI look up for Atomikos Transaction Management
I am configuring Atomikios TM API with my Spring Application to achieve global transaction. As Atomikios require XADatasource to work, so I have done JNDI look up to get the same. But, unfortunately I ...
0
votes
0answers
32 views
Is JTA suitable for the transaction contains a large number of data
There is a archiving requirement to backup the biz data from the biz db to the archiving db(two different physical machines). To keep the safety of the data, We use JTA to ensure that no data would ...
0
votes
0answers
195 views
Java EE: EclipseLink and JTA with Derby, Persistence issue
I'm a Java EE starter newbie, I'm trying to deploy a sample application using glassfish and Derby in NetBeans but I get stuck with this error :
Exception [EclipseLink-7060] (Eclipse Persistence ...
0
votes
1answer
41 views
How to use JTA to POST an array of objects using Jax-RS?
I have a jax-rs REST service that POSTs an
ArrayList<Book>
objects to the server.
On the server, I loop through each Book, convert it into a BookEntity (I'm using JPA), and then persist each ...
0
votes
2answers
121 views
JPA with JTA how to persist many entites in one transaction
I have a list of objects. They are JPA "Location" entities.
List<Location> locations;
I have a stateless EJB which loops thru the list and persists each one.
public void createLocations() {
...
0
votes
2answers
242 views
Atomikos + Spring + JMS read messages batch transactionally
I am trying to design an application using spring + atomikos that reads a batch of N messages and persists them to a database within a single transaction. It has to be a batch of messages because the ...
0
votes
0answers
77 views
weblogic.transaction.internal.TimedOutException vs weblogic.transaction.TimedOutException
what is the difference between these two?
weblogic.transaction.internal.TimedOutException is thrown when JTA timeout occurs.
weblogic.transaction.TimedOutException when??
My Env: EJB-3.0, TopLink, ...
0
votes
0answers
288 views
Testing JTA XA distributed transaction with JPA / Hibernate / MySQL
My goal is to have a standalone solution for building JUnit tests for local and distributed transactions using JPA over Hibernate over MySQL.
So far, I have been able to use an XADataSource to access ...
2
votes
1answer
88 views
How to roll back JTA transaction correctly?
What is the correct way of rolling back the transaction of a container managed JTA transaction?
I understand this: EJBException when calling entityManager.getTransaction()
that I can't get the ...
1
vote
2answers
200 views
XA/JTA transaction: JMS message arrives before DB changes are visible
Context is:
producer (JTA transaction PT) is both sending message to JMS queue and making DB update;
consumer (JTA transaction CT) listens on same queue and reads DB when message is received;
...
0
votes
0answers
49 views
Feasibility of a distributed JTA transactions setup with request-reply over JMS in clustered JBoss environment
I am currently investigating if it is possible to incorporate 2PC XA transactions into an existing environment and at what cost. I am not asking for a detailed explanation/configuration here but for a ...
0
votes
1answer
118 views
Spring + Atomikos batch insert/update
I managed to configure spring + atomikos to have global transactions across multiple databases, e.g., updating or inserting records transactionally. I have been using the @Transactional annotation ...
1
vote
2answers
392 views
JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
Using hibernate in my application, and everytime I do a transaction, I get this warning. It is spamming my logs.
JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate ...
0
votes
2answers
75 views
Distributed transaction between client -> server -> client
For a new project i'm searching for technologies that will make my life a bit easier. My new project is basically 2 clients and a server:
client1 sends a message1 to server, server sends message1 to ...
0
votes
0answers
169 views
UserTransaction not bound issue
I'm configuring persistence for a JBPM process flow, deployed with jboss5 and using bitronix and the transaction manager.
I've been having some problems with the following error:
Caused by: ...
0
votes
0answers
203 views
Setting JNDI for Jboss jta transaction
I'm having problem configuring Hibernate and JBoss Transactions with Jetty. This is required by Infinispan used as second level cache from Hibernate.
My problem occupies when Hibernate try to create ...
1
vote
1answer
261 views
Can not creat tables from entities. JTA and Glassfish
I have a question about JTA with Glassfish. For days Iam trying to solve this problem. I want to write an Entity in a database. To keep it simple I use the GlassfishDB. In the Glassfish-Admin Console ...

