[jboss-user] [JNDI/Naming/Network] - Are RMI Stubs in JNDI Thread-safe
micho
do-not-reply at jboss.com
Wed Dec 6 05:44:04 EST 2006
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(); }
| }
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=3991590#3991590
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3991590
More information about the jboss-user
mailing list