Spring Boot web简介及原理 day04
一、SpringBoot创建web开发(三部曲) 1 .快速构建SpringBoot项目,并以jar包的形式构建 2 .选择对应的功能模块 (选定场景,配置少量的配置就可运行,不配置有默认值) 3 .编写自己的逻辑代码 二、SpringBoot对静态资源的映射规则 通过查看WebMvcAutoConfiguration类,可以查看SpringBoot对静态资源存放的位置 @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