在压缩的 EAR == 中部署分解的 WAR 不可能吗?

发布于 2024-09-26 16:11:19 字数 196 浏览 2 评论 0原文

目前,我正在尝试在 jboss-4.2.3.GA 服务器上的压缩的ear文件中部署分解的war目录。但是JBoss抱怨它找不到web-app.war文件(Failed to find module file: web-app.war)。但是,如果我也部署相同的ear 文件,则部署工作不会出现任何问题。

所以我的问题是:通常是否有可能在压缩的耳朵内部署爆炸战争?

At the moment I am trying to deploy an exploded war directory in a compressed ear file on a jboss-4.2.3.GA server. But JBoss complains that it can't find the web-app.war file (Failed to find module file: web-app.war). However if I deploy the same ear file exploded, too, the deployment works without any problems.

So my question is: Is it generally possible to deploy an exploded war inside a compressed ear?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花期渐远 2024-10-03 16:11:19

我可以在 jboss-5.1.0.GA 上的压缩耳朵内部署爆炸战争。

我建议您可以检查 youear.ear/META-INF/application.xml。

我的appliation.xml是这样的:

<module>
  <web>
    <web-uri>myapp-war-1.0.0-SNAPSHOT.war</web-uri>
    <context-root>/myapp</context-root>
  </web>
</module>

myapp-war-1.0.0-SNAPSHOT.war是一个分解的war目录。

I can deploy an exploded war inside a compressed ear on jboss-5.1.0.GA.

I suggest that you can check youear.ear/META-INF/application.xml.

My appliation.xml is like this:

<module>
  <web>
    <web-uri>myapp-war-1.0.0-SNAPSHOT.war</web-uri>
    <context-root>/myapp</context-root>
  </web>
</module>

and myapp-war-1.0.0-SNAPSHOT.war is an exploded war directory.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文