Tomcat JNDI:托管对象堆栈

发布于 2024-08-26 12:05:52 字数 426 浏览 4 评论 0原文

我有一个类

class ObjFactory {
 MyObject getObject() {...}
 void returnObject() {...}
}

我们如何配置 Tomcat,以便它通过 JNDI 提供这个工厂并管理 这个工厂?

比如说,一个 Web 应用程序应该访问该工厂,并且 Tomcat 中必须只存在 1 个工厂,Web 应用程序的每个副本都引用同一个对象。

  1. 设计这个工厂类的具体规则是什么?也许它应该按照我描述的方式实现一些接口来与Tomcat、JNDI一起工作?

  2. 如何粘合此类、tomcat 和 webapp(应该在什么文件中编写内容,web.xmlcontext.xml 等)?

I have a class

class ObjFactory {
 MyObject getObject() {...}
 void returnObject() {...}
}

How can we configure Tomcat so that it would provide this factory through JNDI and manages
this factory?

Say, one web app should get access to this factory and it must exist only 1 factory in Tomcat, every copy of a web app references the same object.

  1. What are specific rules to design this factory class? Maybe it should implement some interface to work with Tomcat, JNDI in the way I described?

  2. How to glue this class, tomcat and webapp (what should be written in what file, web.xml, context.xml, etc)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

筱果果 2024-09-02 12:05:52

如果您使用的是 Tomcat 5.5,这是一个很好的起点:JNDI 资源操作方法

向下滚动到 '添加自定义资源工厂的部分获取分步说明。

If you are using Tomcat 5.5, this is a good place to start: JNDI Resources HOW-TO.

Scroll down to the 'Adding Custom Resource Factories' section for a step-by-step explanation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文