| Author |
HFEJB doubt
|
nik rb
Greenhorn
Joined: Sep 25, 2005
Posts: 21
|
|
Hi All, I have a question about the "bean things" that can be done at various stages in a session bean life cycle. Ref page 216 HFEJB- if you see, we can't force transaction rollbacks or find if a transaction has been set for a rollback but we can get transaction references and call methods on them in the ejbCreate() ejbActivate() ejbPassivate and ejbRemove() methods. The question is why is it that we can perform transaction related operations for BMT beans and not for CMT beans in these methods? cheers! nik
|
 |
Aakash Parashar
Ranch Hand
Joined: Jul 25, 2005
Posts: 109
|
|
Hi Nick, SPEC 7.5.7 A session bean�s newInstance, setSessionContext, ejbCreate, ejbRemove, ejbPassivate, ejbActivate, and afterCompletion methods are called with an unspecified transaction context. So, you cannot use SessionContext methods to force transaction to complete, this is wit CMT only. In BMT you can definately get TransactionContext from SessionContext in these methods manage to your transaction programatically. People, Please correct me if I am wrong. Thnks. [ August 30, 2007: Message edited by: Neo Greet ]
|
Your's Aakash
SCJP 1.4 96%, SCBCD 1.3 94%
|
 |
 |
|
|
subject: HFEJB doubt
|
|
|