无法为tomcat8部署war文件

发布于 2025-01-09 11:12:25 字数 743 浏览 0 评论 0原文

我正在尝试在修改一个文件后从我的计算机部署 .war 文件

  • 我使用以下方式提取文件 META-INF/context.xml

    jar xf ROOT.war META-INF/context.xml

  • 我在文件中添加了一些代码行Context.xml

  • I 使用修改后的 META-INF/context.xml 更新 war 文件这个命令:

    jar uf ROOT.war META-INF/context.xml

  • 但是我得到这个错误:

    at java.util.zip.ZipOutputStream.putNextEntry(ZipOutputStream.java:232)
    在 java.util.jar.JarOutputStream.putNextEntry(JarOutputStream.java:109)
    在 sun.tools.jar.Main.update(Main.java:635)
    在 sun.tools.jar.Main.run(Main.java:271)
    在 sun.tools.jar.Main.main(Main.java:1288)```
    
    

请有任何想法!

I am trying to deployin a .war file from my computer after modifing one file

  • I Extract the file META-INF/context.xml using :

    jar xf ROOT.war META-INF/context.xml

  • I added some code lines to the file Context.xml

  • I Update the war file with modified META-INF/context.xml using this command :

    jar uf ROOT.war META-INF/context.xml

  • But i get this ERROR :

    at java.util.zip.ZipOutputStream.putNextEntry(ZipOutputStream.java:232)
    at java.util.jar.JarOutputStream.putNextEntry(JarOutputStream.java:109)
    at sun.tools.jar.Main.update(Main.java:635)
    at sun.tools.jar.Main.run(Main.java:271)
    at sun.tools.jar.Main.main(Main.java:1288)```
    
    

Any Ideas, please!

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

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

发布评论

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

评论(2

み零 2025-01-16 11:12:25

回复:@PiotrP.Karwasz 的评论,jar 应该可以很好地处理 war 文件。战争和罐子之间的唯一区别在于它们的结构。但他是对的,您可以使用 zip 以及 jar 来操作 war 文件,这可以给您带来更好的结果。

提取 context.xml:

unzip ROOT.war META-INF/context.xml

使用修改后的 context.xml 更新 war:

zip ROOT.war META-INF/context.xml

另外,如果您在 Tomcat 8 上进行部署,则自 v1.8.2 起,XNAT 已默认配置为在 Tomcat 8.5/9 上工作。如果您可以从当前版本升级到最新版本(我们刚刚发布了 1.8.4),则无需执行任何操作即可让战争与 Tomcat 8.5 或 9 配合使用。

Re: the comment from @PiotrP.Karwasz, jar should work just fine with a war file. The only difference between a war and a jar is their structure. But he is right that you can use zip as well as as jar to manipulate the war file, which could give you a better result.

To extract the context.xml:

unzip ROOT.war META-INF/context.xml

To update the war with your modified context.xml:

zip ROOT.war META-INF/context.xml

Also, if you're deploying on Tomcat 8, XNAT has been configured to work on Tomcat 8.5/9 by default since v1.8.2. If you can upgrade from your current version to the latest release (we just released 1.8.4), you won't have to do anything to get the war to work with Tomcat 8.5 or 9.

向日葵 2025-01-16 11:12:25

大家好,我在提问后回复你们,
我成功地用 zip 部署了一场战争。还有罐子,
事实上,我的错误是由于 /lib 中有两个 jar 文件具有相同的名称(奇怪),
我删除了这些文件,然后只复制/粘贴了一个文件,它就起作用了。

对于 zip,我使用了以下步骤:

1: unzip ROOT.war META-INF/context.xml

2: zip ROOT.war META-INF/context.xml

Hello to all I come back to you after my question,
I managed to deploy a war with zip. and jar too,
Indeed my error is due to the fact that there are two jar files in /lib that have the same name (weird),
I deleted the files then I copy/paste only one and it worked.

with zip i used this steps :

1: unzip ROOT.war META-INF/context.xml

2: zip ROOT.war META-INF/context.xml

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