| Author |
Java transaction service
|
Aniket Kedari
Ranch Hand
Joined: Jan 29, 2008
Posts: 30
|
|
Hi all,
I want to use Java Transaction service for distributed transaction management in my Java application.
I have 3 different databases to which I have to connect using 3 different Connection objects. I want to insert certain data in each of the 3 databases.
My requirement is that atomicity should be maintained. So either data should get inserted in all 3 databases or it should not get inserted in any of the databases.
I searched on net for this kind of transactions and I got http://java.sun.com/javaee/technologies/jts/index.jsp .
I could find its API here http://java.sun.com/products/jts/javadoc/index.html
But I am still not getting how implement transactions using it. Can somebody provide me with links to sample code or tutorials of Java Transaction Service.
Thanks in Advance,
Aniket Kedari
|
 |
amit punekar
Ranch Hand
Joined: May 14, 2004
Posts: 488
|
|
Hi,
AFAIK you will have to use some Application Server like IBM WebSphere or Weblogic that implements these APIs and then use TransacationManager to manage the transaction.
Please check your server's vendor documentation if you are using any.
|
Regards,
Amit
|
 |
 |
|
|
subject: Java transaction service
|
|
|