what is JTA ?

Answer Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

How would you reatach detached objects to a session when the same object has already been loaded into the session?

694


What is scalable, portability in the view of J2EE?

1881


How messaging services are done, before release of JMS?

1598


Explain about RMI Architecture?

619


What are the purpose of introspection?

688






Why use POJO when I can use hashmap

2058


What do you need to set-up a cluster with jboss?

592


If we opened Windows Internet Explorer 4 times, does it starts 4 processes or 4 threads?

1743


How to pass parameters in RMI?

1699


Why is string immutable in java?

590


What are the benefits of detached objects?

597


Define aop(assepct oriented programing)?

650


Which textcomponent method is used to set a textcomponent to the read-only state?

640


Can I run seam outside of jboss as?

646


int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!

1374