Why would a client application use JTA transactions?

devquora
devquora

Posted On: Dec 28, 2020

 

JTA stands for Java Transaction API that allows applications to perform distributed transactions. it also performs transactions that access and update data on two or more networked computer resources. A client application uses JTA transactions because It allows us to start, commit, and rollback transactions in a resource-agnostic way. The true power of JTA lies in its ability to manage multiple resources (i.e. databases, messaging services) in a single transaction

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Weblogic Interview Questions

    How does a server know when another server is unavailable?

    WebLogic Server monitors socket errors to check the availability of a server instance. As an example, if server instance A1 has associate degree open socket to server instance B1, and also the socket ...

    Weblogic Interview Questions

    How can I set deployment order for applications?

    You can set the deployment order of a Startup class, follow the instructions in Configure startup classes....

    Weblogic Interview Questions

    How do stubs work in a WebLogic Server cluster?

    Clients that are connected to a WebLogic Server cluster obtain a replica-aware stub for the object. This stub contains the load balancing logic for distributing the load among its host servers. The st...