从 Tomcat 7 取消部署 hibernate-validator
我有一个 Maven 项目。 使用 Spring 3 和 Hibernate。
我使用 org.codehaus.cargo 在 tomcat 7 中部署/重新部署 war 文件。
在 tomcat 初始启动时,此部署工作正常。但我无法从 tomcat 7 取消部署该项目。 每次我尝试取消部署时,它都会留下 /{project}/WEB-INF/lib/hibernate-validator-4.0.0.GA.jar
我该怎么办?
多谢 瓦尔托斯
I have a maven project.
With Spring 3 and Hibernate.
I using org.codehaus.cargo to deploy/redeploy the war file in my tomcat 7.
On initial start of tomcat this deploy works fine. But i can't undeploy the project from tomcat 7.
Everytime i try to undeploy it leaves /{project}/WEB-INF/lib/hibernate-validator-4.0.0.GA.jar
What can i do?
Thanks a lot
Valtos
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜你用的是 Windows。有时 JAR 文件可能会因为 URL 资源保持打开状态而被锁定。
尝试打开
antiJarLocking 和 antiResourceLocking
(请参阅 http ://tomcat.apache.org/tomcat-7.0-doc/config/context.html)在您的上下文文件中。此讨论可能也相关。
I'm guessing you are on Windows. Sometimes JAR files can get locked because a URL resource remains open.
Try turning on
antiJarLocking and antiResourceLocking
(see http://tomcat.apache.org/tomcat-7.0-doc/config/context.html) in your context file.This discussion might also be relevant.