亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot+thymeleaf靜態資源引入的方法

發布時間:2022-03-03 15:39:56 來源:億速云 閱讀:446 作者:iii 欄目:web開發

本文小編為大家詳細介紹“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靜態資源引入的方法”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

华容县| 客服| 茌平县| 青神县| 甘谷县| 多伦县| 鄄城县| 涟水县| 中江县| 南宫市| 丁青县| 屏东市| 商都县| 定南县| 客服| 涿鹿县| 郑州市| 昆山市| 稷山县| 探索| 呼和浩特市| 毕节市| 丹棱县| 光泽县| 西贡区| 德州市| 同心县| 金乡县| 长寿区| 昭觉县| 龙泉市| 绥中县| 丰镇市| 嘉义县| 定兴县| 广饶县| 游戏| 贡觉县| 牟定县| 中西区| 济源市|