0

我正在开发一个作为 WAR 文件分发的应用程序。我们支持的应用服务器包括 WebSphere 7.0、8.0 和 8.5。此 WAR 文件需要PARENT_LAST类加载器委托模式,以便优先选择捆绑的库而不是 WAS 提供的版本。

部署时可以在WAS控制台中为web模块设置类加载器委托模式,一切正常。但是,理想情况下,我希望这种情况自动发生,以避免客户执行另一个步骤。

有什么我可以添加到 WAR 文件中来指定类加载器委托模式的吗?这个问题和网络上的其他地方都在谈论创建deployment.xml文件,但据我所知,只能放在 EAR 文件中,不能放在独立的 WAR 文件中。

可以在此处此处找到有关 WebSphere 类加载的一些信息。

4

1 回答 1

0

Try

Click Servers > Server Types > WebSphere application servers > server_name

I believe you could set the Server class loader to the server scope and than all apps deployed to it, unless overwritten, would follow.

regards.

Further info here.

于 2013-05-08T18:42:51.090 回答