The
EJB specification states that:
A stateless session bean instance�s life starts when the container invokes newInstance()on the session bean class to create a new instance. Next, the container calls setSession-Context() followed by ejbCreate() on the instance.
The container can perform the instance creation at any time�there is no relationship to a client�s invocation of the create() method.
Can somebody help me to understand about
"The container can perform the instance creation at any time�there is no relationship to a client�s invocation of the create() method."
I was under the impression that there is a relation between instance creation and the client�s invocation of the create() method.
Thanks for your help.