日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > javascript >内容正文

javascript

Spring Boot与Web开发简介||SpringBoot对静态资源的映射规则

發布時間:2025/4/16 javascript 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Spring Boot与Web开发简介||SpringBoot对静态资源的映射规则 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Web開發

1、簡介

使用SpringBoot;

1)、創建SpringBoot應用,選中我們需要的模塊;

2)、SpringBoot已經默認將這些場景配置好了,只需要在配置文件中指定少量配置就可以運行起來

3)、自己編寫業務代碼;


自動配置原理?

這個場景SpringBoot幫我們配置了什么?能不能修改?能修改哪些配置?能不能擴展?xxx



SpringBoot對靜態資源的映射規則

WebMvcAuotConfiguration:@Overridepublic void addResourceHandlers(ResourceHandlerRegistry registry) {if (!this.resourceProperties.isAddMappings()) {logger.debug("Default resource handling disabled");return;}Integer cachePeriod = this.resourceProperties.getCachePeriod();if (!registry.hasMappingForPattern("/webjars/**")) {customizeResourceHandlerRegistration(registry.addResourceHandler("/webjars/**").addResourceLocations("classpath:/META-INF/resources/webjars/").setCachePeriod(cachePeriod));}String staticPathPattern = this.mvcProperties.getStaticPathPattern();//靜態資源文件夾映射if (!registry.hasMappingForPattern(staticPathPattern)) {customizeResourceHandlerRegistration(registry.addResourceHandler(staticPathPattern).addResourceLocations(this.resourceProperties.getStaticLocations()).setCachePeriod(cachePeriod));}}//配置歡迎頁映射@Beanpublic WelcomePageHandlerMapping welcomePageHandlerMapping(ResourceProperties resourceProperties) {return new WelcomePageHandlerMapping(resourceProperties.getWelcomePage(),this.mvcProperties.getStaticPathPattern());}//配置喜歡的圖標@Configuration@ConditionalOnProperty(value = "spring.mvc.favicon.enabled", matchIfMissing = true)public static class FaviconConfiguration {private final ResourceProperties resourceProperties;public FaviconConfiguration(ResourceProperties resourceProperties) {this.resourceProperties = resourceProperties;}@Beanpublic SimpleUrlHandlerMapping faviconHandlerMapping() {SimpleUrlHandlerMapping mapping = new SimpleUrlHandlerMapping();mapping.setOrder(Ordered.HIGHEST_PRECEDENCE + 1);//所有 **/favicon.ico mapping.setUrlMap(Collections.singletonMap("**/favicon.ico",faviconRequestHandler()));return mapping;}@Beanpublic ResourceHttpRequestHandler faviconRequestHandler() {ResourceHttpRequestHandler requestHandler = new ResourceHttpRequestHandler();requestHandler.setLocations(this.resourceProperties.getFaviconLocations());return requestHandler;}}

==1)、所有 /webjars/** ,都去 classpath:/META-INF/resources/webjars/ 找資源;==

? webjars:以jar包的方式引入靜態資源;

localhost:8080/webjars/jquery/3.3.1/jquery.js


==2)、"/**" 訪問當前項目的任何資源,都去(靜態資源的文件夾)找映射==

localhost:8080/abc === 去靜態資源文件夾里面找abc

==3)、歡迎頁; 靜態資源文件夾下的所有index.html頁面;被"/**"映射;==

? localhost:8080/ 找index頁面

==4)、所有的 **/favicon.ico 都是在靜態資源文件下找;==

總結

以上是生活随笔為你收集整理的Spring Boot与Web开发简介||SpringBoot对静态资源的映射规则的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。