如何在独立(非托管)应用程序中使用 jndi?
如何在独立(非托管)应用程序中使用 jndi? App和Tomcat6在同一台机器上。
我们可以在服务器运行时通过jndi查找得到一些东西吗? 但是当应用程序不在这个tomcat服务器下运行时?
How to make use of jndi in a stand-alone (non-managed) application?
App and Tomcat6 are on the same machine.
Can we get something through jndi lookup when the server is running,
but when the app is not running under this tomcat server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我正确理解您的问题,您想在 Tomcat Web 应用程序之外使用 Tomcat JNDI。我认为 Tomcat 不会对外暴露 JNDI。请参阅此链接:
http://wiki.apache.org/tomcat/FAQ/Miscellaneous# Q22
If I understand your question correctly, you want to use the Tomcat JNDI outside of the Tomcat web app. I think Tomcat does not expose the JNDI externally. See this link:
http://wiki.apache.org/tomcat/FAQ/Miscellaneous#Q22
执行查找只需创建
InitialContext
包含有效参数。考虑到您的计算机上运行着 Tomcat,您应该能够在server.xml
中找到所需的上下文参数。Performing a lookup is only a matter of creating an
InitialContext
with the valid parameters. Considering you have a Tomcat running on your machine, you should be able to find the required context parameters inserver.xml
.