我有两个部署环境——Websphere 7.0 和 Glassfish 3.1。我必须在 Websphere 环境的应用程序的 web.xml 中包含一个工作管理器资源引用,如下所示:
<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 是否存在等价物?
谢谢。