1. 程式人生 > 程式設計 >springboot 預設靜態路徑例項解析

springboot 預設靜態路徑例項解析

這篇文章主要介紹了springboot 預設靜態路徑例項解析,文中通過示例程式碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

程式碼如下所示

類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:/public/"

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

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。