InterviewSolution
| 1. |
What Are Transactions In Java Ee Application? |
|
Answer» Transactions in Java EE application are a series of actions that all must be completed SUCCESSFULLY, or else the changes in each action are backed out. If all the actions are SUCCESSFUL then the changes from all actions are committed. If any one of the actions is UNSUCCESSFUL then the changes from all the actions are rolled BACK. Transactions in Java EE application are a series of actions that all must be completed successfully, or else the changes in each action are backed out. If all the actions are successful then the changes from all actions are committed. If any one of the actions is unsuccessful then the changes from all the actions are rolled back. |
|