您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“SpringBoot+thymeleaf靜態資源引入的方法”,內容詳細,步驟清晰,細節處理妥當,希望這篇“SpringBoot+thymeleaf靜態資源引入的方法”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
一、靜態資源的映射規則
1.對哪些目錄映射?
classpath:/META-INF/resources/
classpath:/resources/
classpath:/static/
classpath:/public/
/:當前項目的根路徑
意思是:我們在上面的五個目錄下放靜態資源文件(比如:jq.js等),可以直接訪問(類似以前web項目的webapp下,放到其他目錄無法被訪問。
2.為什是這幾個目錄呢?
2.1看源碼就知道
SpringBoot自動配置的WebMvcAutoConfirarution.java類:
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
if (!this.resourceProperties.isAddMappings()) {
logger.debug("Default resource handling disabled");
return;
}
Duration cachePeriod=this.resourceProperties.getCache().getPeriod();
CacheControl cacheControl=this.resourceProperties.getCache()
.getCachecontrol().toHttpCacheControl();
if (!registry.hasMappingForPattern("/webjars/**")) {
customizeResourceHandlerRegistration(registry
.addResourceHandler("/webjars/**")
.addResourceLocations("classpath:/META-INF/resources/webjars/")
.setCachePeriod(getSeconds(cachePeriod))
.setCacheControl(cacheControl));
}
String staticPathPattern=this.mvcProperties.getStaticPathPattern();
if (!registry.hasMappingForPattern(staticPathPattern)) {
customizeResourceHandlerRegistration(
registry.addResourceHandler(staticPathPattern)
.addResourceLocations(getResourceLocations(
this.resourceProperties.getStaticLocations()))
.setCachePeriod(getSeconds(cachePeriod))
.setCacheControl(cacheControl));
}
}
ResourceProperties
@ConfigurationProperties(prefix="spring.resources", ignoreUnknownFields=false)
public class ResourceProperties {
//我們可以看到靜態資源的映射路徑
private static final String[] CLASSPATH_RESOURCE_LOCATIONS={
"classpath:/META-INF/resources/", "classpath:/resources/",
"classpath:/static/", "classpath:/public/" };
...
}
總的來說:
WebMvcAutoConfiguration類自動為我們注冊了如下目錄為靜態資源目錄,也就是說直接可訪問到資源的目錄。
classpath:/META-INF/resources/
classpath:/resources/
classpath:/static/
classpath:/public/
/:當前項目的根路徑
優先級從上到下。
所以,如果static里面有個index.html,public下面也有個index.html,則優先會加載static下面的index.html,因為優先級!
讀到這里,這篇“SpringBoot+thymeleaf靜態資源引入的方法”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。