修改tomcat根目錄的指向。
阿新 • • 發佈:2019-01-08
<Host appBase="webapps" name="localhost">
<Logger className="org.apache.catalina.logger.FileLogger" prefix="localhost_log." suffix=".txt" timestamp="true"/>
修改完成之後,重新啟動tomcat就可以執行新目錄中的程式了。
<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>