Entity bean questions
what is the sequence of events that takes place after, findAll method on EJB Home of an entity bean is called. In particular I want to know when EJB Objects are created? I am not able to understand this from Entity Bean lifecycle.
# 1
The underlying query will return zero or more primary keys to the container. The container then converts each primary key into its corresponding EJBObject or EJBLocalObject, depending on the interface through which the findAll call was made.In some cases, the EJBObject/EJBLocalObject already exists within the container. In other cases the container needs to create a new EJBObject/EJBLocalObject for the primary key.The resulting set of EJBObjects is then returned to the caller.
ksaksa at 2007-7-28 20:25:14 >
