我有兩個部署環境 - Websphere 7.0和Glassfish 3.1。我必須包括在我的應用程序的WebSphere環境的web.xml中,像這樣一個工作管理器資源引用:等效於glassfish-web.xml的Websphere
<resource-ref>
<description>WorkManager</description>
<res-ref-name>wm/default</res-ref-name>
<res-type>commonj.work.WorkManager</res-type>
<res-auth>Container</res-auth>
<res-sharing-scope>Shareable</res-sharing-scope>
</resource-ref>
不過,我並不需要它的GlassFish GlassFish的,因爲不強制對J2EE規範讓應用程序服務器管理所有線程。 (除了GlassFish也沒有commonj ...)
我發現有一個glassfish-web.xml用於指定GlassFish特定環境的web.xml的附加組件。對於Websphere來說這樣的事情是理想的。
Websphere是否存在等同物?
謝謝。
這就是我所害怕的。我已經研究過讓CommonJ與GlassFish合作,但沒有太多的話題 – faffy