Tomcat JNDI:托管对象堆栈
我有一个类
class ObjFactory {
MyObject getObject() {...}
void returnObject() {...}
}
我们如何配置 Tomcat,以便它通过 JNDI 提供这个工厂并管理 这个工厂?
比如说,一个 Web 应用程序应该访问该工厂,并且 Tomcat 中必须只存在 1 个工厂,Web 应用程序的每个副本都引用同一个对象。
设计这个工厂类的具体规则是什么?也许它应该按照我描述的方式实现一些接口来与Tomcat、JNDI一起工作?
如何粘合此类、tomcat 和 webapp(应该在什么文件中编写内容,
web.xml
、context.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.
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?
How to glue this class, tomcat and webapp (what should be written in what file,
web.xml
,context.xml
, etc)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 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.