OC4J で CommonJ を使用しようとしています。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>
私は正しいですか?