tomcat部署專案,如何去掉專案名
阿新 • • 發佈:2018-12-25
tomcat7預設的程式釋出路徑為tomcat/webapps/ROOT/下面。
例子
比如我在tomcat/webapps/ROOT/路徑下新建一個jsp檔案,則可以直接通過URL為:
來訪問。
再比如我做檔案的上傳和下載功能時,可以在ROOT下新建一個FileUpload資料夾,把上傳檔案的路徑設為這個資料夾下,然後上傳一個檔案test.txt;做下載功能時,點選該檔案的下載按鈕,可以直接讓網頁開啟一個URL:
修改
開啟tomcat/conf/server.xml,有如下程式碼:
<Host name="localhost" appBase="webapps"
unpackWARs ="true" autoDeploy="true">
<!-- SingleSignOn valve, share authentication between web applications
Documentation at: /docs/config/valve.html -->
<!--
<Valve className="org.apache.catalina.authenticator.SingleSignOn" />
-->
<!-- Access log processes all example.
Documentation at: /docs/config/valve.html
Note: The pattern used is equivalent to using pattern="common" -->
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
prefix="localhost_access_log." suffix=".txt"
pattern="%h %l %u %t "%r" %s %b" />
</Host>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
name為本地訪問地址、appBase為專案的父地址,均可以修改。在host標籤之間加入如下標籤
<Context path="" docBase="example" debug="0" reloadable="true" />
- 1
- 1