I wrote a small test to understand asynchronized behavior in EJB3.1 using @Asynchronous annotation. It seems that:

If the method exist in the same bean as the caller,

  1. Call is no longer asynchronized.
  2. The caller transaction is marked for roll back, if the transaction in the asynchronous method is rolled back; its probably the side effect of 1.

However, if the asynchronous method exists in another bean, the behavior is expected i.e. call is asynchronous and the caller transaction is independent (async method have REQUIRES_NEW behavior for transaction). This is puzzling for me, as why the behavior is not the same in both cases. Would someone please clarify?

P.S. Environment EJB 3.1, JBoss 6

link|improve this question

1  
are you calling the method using SessionContext#getBusinessObject(class) instead of using this keyword ? (the difference is explained here ) – stratwine Oct 5 '11 at 23:11
@stratwine Almost certainly the problem, I would just convert it to an answer. – bkail Oct 7 '11 at 13:09
@stratwine You are right, please write your comments in answer so I can accept – anergy Oct 7 '11 at 15:47
@bkail,@anergy: done, thanks! – stratwine Oct 7 '11 at 19:45
feedback

1 Answer

up vote 2 down vote accepted

Calling the method using this keyword instead of using SessionContext#getBusinessObject(class) causes that. (the difference is explained here )

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.