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

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

WBOY
發布: 2023-05-11 12:58:06
轉載
962 人瀏覽過

類別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
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板