There is an Employee Entity bean and one of its finder method, say findByAge()returns the collection of Employee objects whose age is < 40.
Application server�s Bean pooling setup for that bean is minimum 2 beans and maximum 10 beans.
Suppose the above method return 100 objects in the collection, my question is how the Application server or
EJB container handles this situation.
What exactly that collection object will have 100 references to the Employee EJB object or 100 EJB objects.
I don't think Application server will create 100 Entity beans so how this will be handled.
I am thinking when the client is iterating each bean, that time container creates the corresponding entity and once the iterator points to the next object the current object will be pooled.
Please can any one explain how this will be handled.
Thanks.