1. 程式人生 > >java web應用訪問tomcat目錄外檔案的路徑對映問題

java web應用訪問tomcat目錄外檔案的路徑對映問題

只需要編輯%tomcathome%\conf\server.xml檔案,在標籤中增加如何程式碼即可:

<Context docBase="D:/autotest_file/local/report" path="/report" debug="0" reloadable="true" />

其中docBase屬性指定的為檔案實際儲存路徑,path屬性指定的為檔案訪問路徑;如在瀏覽器中訪問http://localhost/autotest/report/report.html實際指向的檔案地址為D:/autotest_file/local/report/report.html

PS:
1. 路徑最後面不要再新增/,否則報錯。
2. 除錯時如果在eclipse中,需在eclipse中的Servers/tomcat/server.xml中新增配置程式碼,eclipse會自動新增至tomcat實際所在路徑配置檔案中,上線時直接在線上%tomcathome%\conf\server.xml中新增即可。