How bean-managed transactions will work?
Answer / guest
When a bean with bean managed transactions is invoked, the
container suspends any current transaction in the client?s
context. In its method implementation, the bean initiates
the transaction through the JTA UserTransaction interface.
In stateful beans, the container associates the bean
instance with the same transaction context across subsequent
method calls until the bean explicitly completes the
transaction. However, stateless beans aren?t allowed to
maintain transaction context across method calls. Each
method invocation must complete any transaction it initiates.
| Is This Answer Correct ? | 0 Yes | 0 No |
Why do we use @requestmapping?
What is Enterprise JavaBeans?
What are the required methods to implement EJB architecture?
What is a Java Bean?
What is meant by ejb?
Can EJB made to handle multiple transactions?
What is the difference between ejbcreate() and ejbpostcreate?
How does ejb container work?
What are the various types of entity beam?
What is difference between stateless and stateful?
What do you mean by EJB architecture?
What is stateless and stateful session bean in ejb?