InterviewSolution
Saved Bookmarks
| 1. |
What Is 'supports' Transaction Attribute That Can Be Defined In Container-managed Transactions? |
|
Answer» If a CLIENT has an associated transaction and calls a container-managed bean method then the method executes WITHIN the client transaction. If a client is not associated with a transaction, then the container does not START a new transaction before calling the bean's method. If a client has an associated transaction and calls a container-managed bean method then the method executes within the client transaction. If a client is not associated with a transaction, then the container does not start a new transaction before calling the bean's method. |
|