HFB p.369 q.10
What is true for a CMP bean in the ready state ?
A. Its ejbLoad() can be called directly after ejbStore.
B. Its ejbStore() can be called directly after a business method.
C. One of its business methods can be called directly after ejbStore.
D. None of the above.
Ans: A, B, C.
I understand why A, B, C are correct. I get the ans in HFB p.352 and p. 356. However, the explanation of the book is:
The point is: load, store and biz methods can be called by the Container in any order
Why in any order ?
Is it mean that following situation will happen ?
---------------------------------
Client called biz methods
ejbLoad()
ejbStore() //store called /*before*/ bizMethods
bizMethods()
//may called ejbPassivate() ...
---------------------------------
The above seq is different on book p. 352