balamg wrote:
I got it working by setting the container-transaction element in
the deployment descriptor
<container-transaction >
<method >
<ejb-name>Test</ejb-name>
<method-name>*</method-name>
</method>
<trans-attribute>Required</trans-attribute>
</container-transaction>
Thanks !
Hello!
I see this is a solution, but imo not a preferred one. For every readonly-access to the DB a new transaction has to be started.
I don't know how deep the performance impact will be (Oracle 8.1.7) but I'm not very happy about setting for each method the transaction-attribute to "Required".
Is this really the only non-programmatic / configurable solution??
Jan