maven redeploy過程沒法刪除Tomcat舊項目的目錄

Windows系統下,redeploy過程沒法刪除舊項目的目錄 html

報錯信息在$TOMCAT_HOME/logs下的catalina日誌文件中,以下: web

信息: Undeploying context [/web-loab]  
十月 11, 2014 3:52:26 下午 org.apache.catalina.startup.ExpandWar deleteDir  
嚴重: [D:\tomcat\apache-tomcat-7.0.56\webapps\web-loab\WEB-INF] could not be completely deleted. The presence of the remaining files may cause problems

大概是由於Tomcat還在使用這個目錄,沒法刪除,必須修改$TOMCAT_HOME/conf/context.xml express

<?xml version='1.0' encoding='utf-8'?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<!-- The contents of this file will be loaded for each web application -->
<Context antiJARLocking="true" antiResourceLocking="true">

    <!-- Default set of monitored resources -->
    <WatchedResource>WEB-INF/web.xml</WatchedResource>

    <!-- Uncomment this to disable session persistence across Tomcat restarts -->
    <!--
    <Manager pathname="" />
    -->

    <!-- Uncomment this to enable Comet connection tacking (provides events
         on session expiration as well as webapp lifecycle) -->
    <!--
    <Valve className="org.apache.catalina.valves.CometConnectionManagerValve" />
    -->

</Context>

也就是 在 context 標籤上 添加 「antiJARLocking」, 「antiResourceLocking」 屬性,並都設置爲 true,便可! apache

參考文章開發過程使用Tomcat Maven插件持續快捷部 tomcat

相關文章
相關標籤/搜索