InterviewSolution
| 1. |
How Do You Set Transaction Timeouts In Container-managed And Bean-managed Transactions? |
|
Answer» Container-MANAGED TRANSACTION - In container managed TRANSACTIONS the transaction timeout is set at the container's administration console. Bean-Managed Transactions - In Bean-managed transactions, the transaction timeout is set by CALLING the setTransactionTimeout () method of the User Transaction INTERFACE. Container-Managed Transaction - In container managed transactions the transaction timeout is set at the container's administration console. Bean-Managed Transactions - In Bean-managed transactions, the transaction timeout is set by calling the setTransactionTimeout () method of the User Transaction interface. |
|