Tomcat 热部署不工作

发布于 2024-08-05 08:10:57 字数 229 浏览 10 评论 0原文

我在 Tomcat 6 服务器上热部署新的 WAR 时遇到问题。

当我添加新的 WAR 时,我可以看到 Tomcat 正在尝试部署它。但是,我认为问题在于取消部署旧的 war - 展开的 war 文件夹的内容全部被删除 - 除了 WEB-INF 文件夹。

如果我停止服务器,删除 WEB-INF 文件夹,然后重新启动,我的战争就会正确部署。

谁能建议这里可能发生的事情吗?

谢谢。

I'm having an issue hot deploying a new WAR on my Tomcat 6 server.

When I add in my new WAR I can see that Tomcat is attempting to deploy it. However, I believe the problem lies in undeploying the old war - the exploded war folder's contents are all deleted - except the WEB-INF folder.

If I stop the server, delete the WEB-INF folder and then start again, my war is deployed correctly.

Can anyone suggest anything which may be happening here?

Thanks.

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

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

发布评论

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

评论(1

橘和柠 2024-08-12 08:10:57

找到解决办法,问题出在Tomcat运行时Windows锁定文件夹。要删除此锁定,只需在 Catalina Home 中编辑 context.xml,更改

<context>

为:

<Context antiJARLocking="true" antiResourceLocking="true">

Found the solution, the problem lies in the fact that Windows locks the folder when Tomcat is running. To remove this locking, just edit context.xml in the Catalina Home, change

<context>

to:

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