首頁 >Java >java教程 >springboot中如何實現預設靜態路徑

springboot中如何實現預設靜態路徑

WBOY
WBOY轉載
2023-05-11 12:58:06960瀏覽

類別ResourceProperties.class

private static final String[] CLASSPATH_RESOURCE_LOCATIONS = new String[]{"classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/"};
private String[] staticLocations;

public ResourceProperties() {
 this.staticLocations = CLASSPATH_RESOURCE_LOCATIONS;
 this.addMappings = true;
 this.chain = new ResourceProperties.Chain();
 this.cache = new ResourceProperties.Cache();
}

根據建構方法可知, staticLocations等於預設的CLASSPATH_RESOURCE_LOCATIONS, 也即"classpath:/META-INF/ resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/"

classpath即為我們如下所示的resource資料夾

springboot中如何實現預設靜態路徑

以上是springboot中如何實現預設靜態路徑的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:yisu.com。如有侵權,請聯絡admin@php.cn刪除