Springboot 靜態資源訪問路徑配置

2021-10-02 06:51:17 字數 422 閱讀 5269

springboot 預設提供的靜態資源目錄位置需位於 classpath 下,目錄名為

classpath:/static

classpath:/public

classpath:/resources

classpath:/meta-inf/resources

# 靜態檔案請求匹配方式

spring.mvc.static-path-pattern=/test/**

# 修改預設的靜態資源目錄,多個用 逗號 隔開

spring.resources.static-locations=classpath:/static/,classpath:/test/

# 加上自定義的資源路徑後,預設的靜態資源路徑將失效,所以,如果預設的也要用到,預設的也需要加上。

spring boot 靜態資源

springboot中,預設的靜態資源路徑有 配置在resourceproperties類中 private static final string classpath resource locations 優先順序 靜態資源路徑 例如 webmvcautoconfiguration自動裝配類中,可...

SpringMVC REST 風格靜態資源訪問配置

1 在web.xml中使用預設servlet處理靜態資源,缺點是如果靜態資源過多,則配置量會比較大,一旦有遺漏,則會造成資源無法正常顯示或404錯誤。2 在springmvc配置檔案中配置 我的所有靜態資源都在webcontent static 之下,下有如下目錄webcontent static ...

springboot載入靜態資源

使用springboot寫了簡單的web專案,頁面使用jsp檔案 但是靜態資源js 載入不到,看了下官方文件發現是因為路徑不對 所以專案靜態資源應該配置在根路徑下這四個資料夾中是可以直接訪問到的 meta inf resources,public,resources,static下的資源,對映路徑 ...