We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 10 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
我按照在线 JNDI 教程来帮助我满足我的需要。它看起来有点旧(为 JDK 1.4.2 编写),但仍然适用。 Sun/Oracle JNDI 教程。
I followed the JNDI Tutorial online to help me with what I needed. It is a bit old looking (and written for JDK 1.4.2) but still applicable. Sun/Oracle JNDI Tutorial.
现在我通过注释和 InitialContext 类的全局使用解决了我的问题。
无状态注释和 ejb-jar xml 文件以及访问全局 jndi 地址的键以供使用。
访问代码:
服务代码;
IMyInterface.java:
MyClass.java:
ejb-jar.xml;
Now I solved my problem with annotations and global usage of InitialContext class.
Stateless annotation and ejb-jar xml files and accessing the global jndi addresses the keys for usage.
Access Code:
Service Code;
IMyInterface.java:
MyClass.java:
ejb-jar.xml;
FWIW,如果有人想在 Tomcat 中拥有自定义 JNDI 资源,请查看他们的 JNDI 教程。
FWIW, if anyone wants to have a custom JNDI resource in Tomcat check out their JNDI tutorial.