RE: what is the default transaction attribute in trans...
In weblogic, the default transaction attribute for EJB is SUPPORTS. There is no default transaction attribute for an EJB. Section 11.5 of EJB v1.1 spec says that the deployer must specify a value for the transaction attribute for those methods having container managed transaction.
RE: what is the default transaction attribute in trans...
There is no default transaction attribute for an EJB.
In weblogic, the default transaction attribute for EJB is SUPPORTS.
For specifically, For Session Beans, the default Transaction Attribute is Required, For Entity Beans is Supports.
Section 11.5 of EJB v1.1 spec says that the deployer must specify a value for the transaction attribute for those methods having container managed transaction.
RE: what is the default transaction attribute in trans...
The default choice for a transaction attribute is Required. Using this attribute ensures that the methods of an enterprise bean are invoked within a JTA transaction. In addition, enterprise beans with the Required transaction attribute can be easily composed to perform work within the scope of a single JTA transaction.