OC4J (10.1.2) orion-web.xml
我尝试将 CommonJ 与 OC4J 一起使用。 我需要在 orion-web.xml 中编写“resource-ref-mapping”
如果我在 web.xml 中有这样的条目:
<resource-ref>
<res-ref-name>tm/PublisherTimerManager</res-ref-name>
<res-type>commonj.timers.TimerManager</res-type>
<res-auth>Container</res-auth>
<res-sharing-scope>Unshareable</res-sharing-scope>
</resource-ref>
那么如果我理解正确,那么需要在 orion-web.xml 中:
<resource-ref-mapping name="tm/PublisherTimerManager"
location="tm/PublisherTimerManager">
<lookup-context location="commonj.timers.TimerManager">
<context-attribute name="java.naming.factory.initial"
value="de.myfoo.commonj.timers.FooTimerManagerFactory"/>
</lookup-context>
</resource-ref-mapping>
我对吗?
I try to use CommonJ with OC4J.
I need to write 'resource-ref-mapping' in orion-web.xml
If I have such entry in web.xml:
<resource-ref>
<res-ref-name>tm/PublisherTimerManager</res-ref-name>
<res-type>commonj.timers.TimerManager</res-type>
<res-auth>Container</res-auth>
<res-sharing-scope>Unshareable</res-sharing-scope>
</resource-ref>
Then if i undestand right then need in orion-web.xml:
<resource-ref-mapping name="tm/PublisherTimerManager"
location="tm/PublisherTimerManager">
<lookup-context location="commonj.timers.TimerManager">
<context-attribute name="java.naming.factory.initial"
value="de.myfoo.commonj.timers.FooTimerManagerFactory"/>
</lookup-context>
</resource-ref-mapping>
Am i right?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
OC4J 中的 CommonJ? CommonJ 是 BEA(现在的 Oracle)和 IBM 之间的合作项目,除了少数端口(我相信是 JBoss)之外,仅在 Weblogic 和 Websphere 上可用。
CommonJ in OC4J? CommonJ was a collaboration between BEA (now Oracle) and IBM and apart from a few ports (to JBoss I believe) is only available on Weblogic and Websphere.