This week's book giveaway is in the Raspberry Pi forum. We're giving away four copies of Getting started with Java on the Raspberry Pi and have Frank DelPorte on-line! See this thread for details.
Hi, Mock ExamP246 Q8 Which are required of the bean provider to ensure that the session bean is successfully passivated(choose all that apply) A. provider must call ejbPassivate() B. The provider must always add busness logic to the ejbPassivate() method, if the bean is stateful. C. The provider must close any database connections before ejbPassivate completes. D. The provider must assume that any state stored in instance fields marked transient will be lost. E. The provider must assume that any reference to the SessionContext object will not survive passivation if the SessionContex object is not serializable.
I answerd C and D But the answer is D, and C in the answer says "The rovider must not close any database connections before ejbPassivate completes" I thought that the connections are not serializable and hence it has to be closed or nullified in the ejbPassivate method to cater for the bean going in to not ready state due to timeout in the passivate state. I am confused.