1 Reply Latest reply on Oct 7, 2002 10:51 PM by adrian.brock

    Holding reference to entity bean in session bean

    tomlauren2

      I have a general question regarding using a remote stateless session bean as a facade for a group of local entity beans. Is it ok to do initial context lookups in the ejbCreate() method of the session bean and then use private fields of the session bean to hold the local home objects of the entity beans, or is this potentially a problem if the session bean is passivated? I'm currently doing this to save time from having to do lookups in the beginning of each session bean method. Instead, each method can immediately perform actions on the home objects that are stored in the private fields of the session bean.