SpringBoot学习笔记(五)SpringBoot_Web开发一

一、简介

  • 创建SpringBoot应用,选中我们需要的模块;
  • SpringBoot已经默认将这些场景配置好了,只需要在配置文件中指定少量配置就可以运行起来
  • 自己编写业务代码就可以了
  • 自动配置原理:
       xxxxAutoConfiguration:帮我们给容器中自动配置组件
       xxxxProperties:配置类,用来封装配置文件的内容;

二、webjars和静态资源映射规则

(IDEA中按住ctrl+shift+alt+N来跳转到你想要查看的类)

(一)所有 /webjars/** ,都去 classpath:/META-INF/resources/webjars/找资源;

  • ResourceProperties类可以设置和静态资源有关的参数,比如缓存时间等
@ConfigurationProperties(
    prefix = "spring.resources",
    ignoreUnknownFields = false
)
public class ResourceProperties {
  ......
}
  • WebMvcAutoConfiguration类中有这么一段代码:
//添加资源映射
  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(getResourceLocations(this.resourceProperties.getStaticLocations())).setCachePeriod(this.getSeconds(cachePeriod)).setCacheControl(cacheControl));
                }
            }
        }

可得,所有 /webjars/** ,都去 classpath:/META-INF/resources/webjars/找资源;

webjars/**小例子

以jar包的方式引入静态资源,项目要用的可以以maven依赖引进来
网址:https://www.webjars.org/

SpringBoot学习笔记(五)SpringBoot_Web开发一_第1张图片
image.png

把依赖粘贴复制进pom.xml就可以了

SpringBoot学习笔记(五)SpringBoot_Web开发一_第2张图片
image.png

到浏览器中访问试一下 http://localhost:8080/webjars/jquery/3.3.1-1/jquery.js
可以看到这个文件夹的路径跟上面那个添加资源映射的类说的一样:
classpath:/META-INF/resources/webjars/
SpringBoot学习笔记(五)SpringBoot_Web开发一_第3张图片
image.png


(二)/**:访问当前项目的任何资源,只要没人处理,都会去下面这几个文件夹(静态资源的文件夹下)找映射

//静态资源的文件夹
"classpath:/META‐INF/resources/",
"classpath:/resources/",
"classpath:/static/",
"classpath:/public/"
"/":当前项目的根路径
SpringBoot学习笔记(五)SpringBoot_Web开发一_第4张图片
image.png

(三)首页的映射

静态资源文件夹下的所有index.html页面;会被/**映射

//配置首页的映射
        @Bean
        public WelcomePageHandlerMapping welcomePageHandlerMapping(ApplicationContext applicationContext) {
            return new WelcomePageHandlerMapping(new TemplateAvailabilityProviders(applicationContext), applicationContext, this.getWelcomePage(), this.mvcProperties.getStaticPathPattern());
        }

小例子

SpringBoot学习笔记(五)SpringBoot_Web开发一_第5张图片
image.png

SpringBoot学习笔记(五)SpringBoot_Web开发一_第6张图片
image.png

(四)配置喜欢的图标

把喜欢的图标名字改为favicon.ico,放在静态资源文件下,SpringBoot就会自动找到它并配置好

//这是配置的那段代码
public SimpleUrlHandlerMapping faviconHandlerMapping() {
   SimpleUrlHandlerMapping mapping = new SimpleUrlHandlerMapping();
   mapping.setOrder(-2147483647);
   mapping.setUrlMap(Collections.singletonMap("**/favicon.ico", this.faviconRequestHandler()));
   return mapping;
}

最后,其实可以自己配置静态资源文件夹

application.properties

spring.resources.static-location=classpath:/hello/,classpath:/ccc
//多个用逗号隔开

你可能感兴趣的:(SpringBoot学习笔记(五)SpringBoot_Web开发一)