/安裝路徑/tomcat/conf/server.xml
prefix="localhost_access_log." suffix=".txt"
pattern="%h %l %u %t "%r" %s %b" />
debug:與這個 engine 關聯的 logger 記錄的除錯資訊的詳細程度。數字越大,輸出越詳細。如果沒有指定,預設為 0。
重啟tomcat,如果你想訪問d:\static資料夾下hello.jpg
在瀏覽器輸入http://localhost:8080/static/hello.jpg
其實和windows下的操作差不多,就是改一下本地檔案路徑,linux的碟符路徑表示和win不同
tomcat的安裝路徑/apache-tomcat-你的版本/conf
例如:/usr/local/apache-tomcat-8.0.53/conf/server.xml
prefix="localhost_access_log." suffix=".txt"
pattern="%h %l %u %t "%r" %s %b" />
重啟tomcat,如果你想訪問/home/static資料夾下hello.jpg
在瀏覽器輸入http://localhost:8080/static/hello.jpg
SpringBoot 配置靜態資源對映
嵌入式servlet容器 先決知識 request.getsession getservletcontext getrealpath 這個很重要,將其稱為 docbase,即 文件基目錄 springboot 的 enableautoconfiguration 會啟用自動配置類 webmvcauto...
springboot配置靜態資源對映
先來一段 吧,看一下注釋 告訴大家乙個天大的秘密,一旦用了 配置,properties配置就不起效果了 configuration enablewebmvc springbootconfiguration public class springmvc implements webmvcconfigu...
SpringBoot 配置靜態資源對映
嵌入式servlet容器 先決知識 request.getsession getservletcontext getrealpath 這個很重要,將其稱為 docbase,即 文件基目錄 springboot 的 enableautoconfiguration 會啟用自動配置類 webmvcauto...