1. 程式人生 > >修改tomcat根目錄的指向。

修改tomcat根目錄的指向。

    <Host appBase="webapps" name="localhost">
        <Logger className="org.apache.catalina.logger.FileLogger" prefix="localhost_log." suffix=".txt" timestamp="true"/>

      </Host>

以上是tomcat5.5的server.xml裡的配置檔案,如果要改變根目錄的

      <Host appBase="webapps" name="localhost">
        <Logger className="org.apache.catalina.logger.FileLogger" prefix="localhost_log." suffix=".txt" timestamp="true"/>
  <Context path="" docBase="F:/Java/DaoGou/MyDaoGou" debug="0" reloadable="true" crossContext="true" />
      </Host>

修改完成之後,重新啟動tomcat就可以執行新目錄中的程式了。