改變預設的靜態資源路徑,配置靜態資源的訪問字首

2022-09-19 06:39:11 字數 623 閱讀 4236

在springboot中,靜態資源放在類路徑下:resources/static or /public or /resources or /meta-int/resources

訪問方法: 當前專案根路徑(也就是/) + 靜態資源名 (比如localhost:8080/timg.jpg)

如果在controller類中請求了乙個與靜態資源名字相同的操作,那麼先從controller開始找(先去找controller看能不能處理,不能處理的所有請求又交給靜態資源處理器,靜態資源也找不到則響應404頁面)。

public

string show()

spring:

mvc:

static-path-pattern: /res/** #配置靜態資源的訪問字首,這時要訪問就要用 localhost:8080/res/timg.jpg

resources:

static-locations: [classpath:/static/] //改變預設的靜態資源路徑,這時只在static這個資料夾搜尋資源,可以是陣列(已經不用了)

spring boot靜態資源路徑配置

spring mvc static path pattern resources static locations classpath meta inf resources classpath resources classpath static classpath public file the ...

Springboot 靜態資源訪問路徑配置

springboot 預設提供的靜態資源目錄位置需位於 classpath 下,目錄名為 classpath static classpath public classpath resources classpath meta inf resources 靜態檔案請求匹配方式 spring.mvc....

在SpringBoot中配置靜態資源路徑

在springboot中配置靜態資源路徑 訪問static public templates時,相當於訪問。login.html中background設定背景檔案路徑 這裡報錯不影響使用。需要載入springboot訪問靜態資源的jar檔案 在pom.xml檔案中加入 org.springframe...