SpringBoot——Web開發(靜態資源映射)

  • 2019 年 10 月 6 日
  • 筆記

靜態資源映射

SpringBoot對於SpringMVC的自動化配置都在WebMVCAutoConfiguration類中。

其中一個靜態內部類WebMvcAutoConfigurationAdapter實現了WebMvcConfigurer接口。(361)

WebMvcConfigurer接口中定義了addResourceHandlers處理靜態資源的默認映射關係.(500)

addResourceHandlers在WebMvcAutoConfigurationAdapter類中實現

public void addResourceHandlers(ResourceHandlerRegistry registry) {              if (!this.resourceProperties.isAddMappings()) {                  logger.debug("Default resource handling disabled");              } else {                  Duration cachePeriod = this.resourceProperties.getCache().getPeriod();                  CacheControl cacheControl = this.resourceProperties.getCache().getCachecontrol().toHttpCacheControl();                  if (!registry.hasMappingForPattern("/webjars/**")) {                      this.customizeResourceHandlerRegistration(registry.addResourceHandler(new String[]{"/webjars/**"}).addResourceLocations(new String[]{"classpath:/META-INF/resources/webjars/"}).setCachePeriod(this.getSeconds(cachePeriod)).setCacheControl(cacheControl));                  }                    String staticPathPattern = this.mvcProperties.getStaticPathPattern();                  if (!registry.hasMappingForPattern(staticPathPattern)) {                      this.customizeResourceHandlerRegistration(registry.addResourceHandler(new String[]{staticPathPattern}).addResourceLocations(WebMvcAutoConfiguration.getResourceLocations(this.resourceProperties.getStaticLocations())).setCachePeriod(this.getSeconds(cachePeriod)).setCacheControl(cacheControl));                  }                }          }

其中

this.resourceProperties.getStaticLocations()

返回靜態資源的默認映射關係,

getStaticLocations()方法在ResourceProperties中定義

其中,

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

classpath:/META-INF/resources/

classpath:/resources/

classpath:/static/

classpath:/public/

第五個默認的資源映射:在靜態方法getResourceLocations中定義

/

小結:

默認情況下,可以在以下五個位置放置靜態資源

classpath:/META-INF/resources/    classpath:/resources/    classpath:/static/    classpath:/public/    /

【靜態資源一般放在classpath:/static/目錄下】

自定義favicon,自定義index.html

favicon.ico是瀏覽器左上角的圖標,可以放在靜態資源路徑下或者類路徑下,靜態資源路徑優先級高。

SpringBoot啟動後默認在靜態資源目錄下尋找index.html,如果沒有找到;就會去resource/templates目錄下尋找index.html(使用Thymeleaf模板)

定製banner

http://www.network-science.de/ascii/

創建banner.txt文件置於resource目錄下

代碼參考:

https://github.com/HCJ-shadow/SpringBootPlus