I'm a little bit confusing about how
EJB Object and EJB instance works on BEA Weblogic8.1.
for Stateless Session Bean, the create() method in home interface would return an EJB Object to the user. So, I assume here that each EJB Object for a Stateless Session Bean is associated with a user, is it correct?
but for Entity Bean, the Finder method in Home interface, would return a primary key or a collection of primary keys, which are then used to construct EJB Objects. So, each EJB Object for an Entity Bean is associated with a primary key. When two users try to access the same Entity Bean simultaneously, both of them would be coupled with the same EJB Object, and this EJB Object would be assocaited with two Bean Instances representing the same data, servicing those two users respectively. Is it right?