I have a servlet talking to a Sessionbean.

Is it allowed -regarding threadsafeness - to  obtain  the manager in the 
servlets init() method and store it in an instance-membervariable of the class.

public class LzServlet extends HttpServlet {
  | 
  |   MandantenManager mm =null;
  |   
  |   public void init(ServletConfig config)
  |   { 
  |     try
  |     { InitialContext ctx = new InitialContext();
  |       mm = (MandantenManager) 
ctx.lookup("BBCS/MandantenManagerBean/remote");
  |     }
  |     catch (Exception e)
  |     {
  |       e.printStackTrace();
  |       System.exit(-1);
  |     }
  |   }
  | 

Is getting the initialcontext and the lookup an "expensive" operation?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3988002#3988002

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3988002
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to