What is Transaction attribute?
Answers were Sorted based on User's Feedback
Answer / uma
but in EJB 3, we have 5 transaction attributes
Required
RequiresNew
Supports
Never
Mandatory
u can go through any EJB book for the details.
the transaction attributes are a way to restrict the beans
in the transactions
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / vaibhav
Transaction attribute is specified in the XML configuration
file of the EJb and is used to specify the function calls
that has to made in the context of a transaction. A new
transaction can be started with the mentioned function call
or some function can be called only if some transactions is
already started. It is useful in database updations context
when more than one instances of the EJb updates the
database at the same time.
Some standard paramaters are:
RequiresNew
NoTransaction
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / hardeep kumar
Required
RequiresNew
Supports
NotSupported
Never
Mamdatory
| Is This Answer Correct ? | 1 Yes | 0 No |
What’s the difference between hibernate and ejb 3?
How to determine two identical beans?
What are the required methods to implement EJB architecture?
What is remote interface in ejb?
What is the procedure of ejb container to handle exceptions?
Define Clone?
In what way, the client gets a reference to an existing entity bean?
Why do we use @requestmapping?
what s the difference b/w EJB 2.0 and EJB 3.0 technically
2 Answers Microsoft, Mind Tree, Tech Mahindra,
For ejb applications with bean-managed transaction demarcations, which of the following is used by the client to get a reference to the usertransaction object for the weblogic server domain?
Does spring use ejb?
What do you mean by timer service and where it is used?