Tomcat: what is the init context params to use for making an external client connection to Tomcat 5.5 JNDI tree?

后端 未结 2 1801
灰色年华
灰色年华 2021-01-20 20:11

Currently I am using this for JBoss, but I need something also for an external Tomcat:

Properties props = new Properties();
props.put(Context.PROVIDER_URL, \         


        
相关标签:
2条回答
  • 2021-01-20 20:49

    I found this helpful link for using in Tomcat: EJB in Jboss called from Tomcat

    It seems to be stupid, but in fact the approach in that topic is good enough to be considered. The main idea is here: The Tomcat server has its own JNDI system, so that an inside web-app must declare the JNDI they want to use first, then use that declaration to lookup the remote server's object (Jboss' EJB).

    Hope that helps you,

    Regards,

    0 讨论(0)
  • 2021-01-20 20:56

    As far as I know, tomcat doe not support remote access to its JNDI tree, so you can access it only from the tomcat process. Because of that, The tomcat sets all the initialization params for the default InitialConext, and you can use it like this:

    // Obtain our environment naming context
    Context initCtx = new InitialContext();
    Context envCtx = (Context) initCtx.lookup("java:comp/env");
    
    // Look up our data source
    DataSource ds = (DataSource)
      envCtx.lookup("jdbc/EmployeeDB");
    
    // Allocate and use a connection from the pool
    Connection conn = ds.getConnection();
    ... use this connection to access the database ...
    conn.close();
    

    You can also learn more of the JNDI in tomcat in this link

    0 讨论(0)
提交回复
热议问题