0

我希望在 tomcat 中取消部署和删除正在运行的应用程序,而无需从同一个 tomcat 中的其他应用程序重新启动 tomcat 服务器。但是加载的 jar 文件不会在我的 webapps/lib 文件夹中删除。可能是他们在 Tomcat JVM 中使用。

对于联合国部署,我使用代码,然后我尝试删除“http://Server-IP:port/manager/html/undeploy?path=/applicationName”

也尝试停止“http://Server-IP:port/manager/html/stop?path=/applicationName”

请帮我 :)

感谢你。

4

1 回答 1

2

我的第一个想法是在 Tomcat/conf/context.xml 中设置 antiJARLocking="true" antiResourceLocking="true"。

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

http://tomcat.apache.org/tomcat-6.0-doc/config/context.html

于 2012-10-18T07:30:42.210 回答