| Author |
JTA for Tomcat
|
Praful Thakare
Ranch Hand
Joined: Feb 10, 2001
Posts: 509
|
|
Hi,
What are the good options for using JTA with tomcat ?
googling suggested JOTM, BTM , Atomikos and Jencks but reference is from 2002, are there any new or better options?
I am using tomcat 6.0.16
-P
|
All desirable things in life are either illegal, banned, expensive or married to someone else !!!
|
 |
Tim Holloway
Saloon Keeper
Joined: Jun 25, 2001
Posts: 11740
|
|
|
If you meant JTA as in Java Transaction Architecture, Tomcat doesn't get involved in that. If a webapp is using something like an ORM, the ORM may require a copy of the jta jar to be included in the webapp itself. One of the major differences between Tomcat and the full-stack J2EE servers is, in fact, the lack of built-in persistence management functions.
|
A lot the of modern-day software development platforms are designed to permit parcelling out work to those with the best aptitude for it. A lot of modern-day business is predicated on making one person do all the work, regardless of aptitude.
|
 |
Praful Thakare
Ranch Hand
Joined: Feb 10, 2001
Posts: 509
|
|
Hi Tim,
I understand tomcat doesnot support JTA, so I am looking for some 3rd party jar file that will hepl, I am not using any ORM, just spring and jdbc.
-P
|
 |
Tim Holloway
Saloon Keeper
Joined: Jun 25, 2001
Posts: 11740
|
|
|
I think there's only one jta jar source and you can get it from Sun. It's also published via Maven as javax.transaction.jta/jta-1.1.jar.
|
 |
 |
|
|
subject: JTA for Tomcat
|
|
|