what is JTA ?

Answers were Sorted based on User's Feedback



what is JTA ?..

Answer / rajesh

It is a Java Transaction API . High level representation of
the JTS (Java transaction services).

It provides developer to control the transaction and
maintain the ACID procperties of the transaction.

Is This Answer Correct ?    5 Yes 2 No

what is JTA ?..

Answer / anonymous

JTA- Java Transaction API
- Used to control transactions.
- javax.transaction.UserTransaction - interface should be
implemented to get the object.
- javax.transaction.UserTransaction ut= new
javax.transaction.UserTransaction
ut.begin()
ut.commit()
ut.rollback()
methods are available in this Interface.

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More Advanced Java Interview Questions

How do you maintain a stateful session object across the session

2 Answers   HCL,


What is multi-tasking? Types?

1 Answers  


What is the purpose of the wait() method?

0 Answers  


What are synchronized methods and synchronized statements?

2 Answers   Adobe,


For an example, if we have some variable in run method, and we created one or more threads. Does all threads will share the same variable or a copy of variable is created for each thread??

1 Answers  






What modifiers may be used with an inner class that is a member of an outer class?

0 Answers  


What are the different algorithms used for clustering?

0 Answers  


what is an isolation level?

0 Answers  


What will happens, when a thread cannot acquire a lock on an object?

2 Answers  


What are various types of class loaders used by jvm?

0 Answers  


difference of inheritance and interface

3 Answers  


What is Remote Interface?

1 Answers  


Categories