|
@@ -174,3 +174,1216 @@ public class HelloController {
|
|
|
|
|
|
3、编写完毕后,从主程序启动项目,浏览器发起请求,看页面返回;控制台输出了 Tomcat 访问的端口号!
|
|
|
|
|
|
+ 
|
|
|
+
|
|
|
+# 2、SpringBoot:运行原理初探
|
|
|
+
|
|
|
+***
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+我们之前写的HelloSpringBoot,到底是怎么运行的呢,Maven项目,我们一般从pom.xml文件探究起;
|
|
|
+
|
|
|
+> **pom.xml**
|
|
|
+
|
|
|
+## 2.1、父依赖
|
|
|
+
|
|
|
+其中它主要是依赖一个父项目,主要是管理项目的资源过滤及插件!
|
|
|
+
|
|
|
+```xml
|
|
|
+<parent>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
+ <version>2.2.5.RELEASE</version>
|
|
|
+ <relativePath/> <!-- lookup parent from repository -->
|
|
|
+</parent>
|
|
|
+```
|
|
|
+
|
|
|
+点进去,发现还有一个父依赖
|
|
|
+
|
|
|
+```xml
|
|
|
+<parent>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-dependencies</artifactId>
|
|
|
+ <version>2.2.5.RELEASE</version>
|
|
|
+ <relativePath>../../spring-boot-dependencies</relativePath>
|
|
|
+</parent>
|
|
|
+```
|
|
|
+
|
|
|
+这里才是真正管理SpringBoot应用里面所有依赖版本的地方,SpringBoot的版本控制中心;
|
|
|
+
|
|
|
+**以后我们导入依赖默认是不需要写版本;但是如果导入的包没有在依赖中管理着就需要手动配置版本了;**
|
|
|
+
|
|
|
+## 2.2、启动器 spring-boot-starter
|
|
|
+
|
|
|
+```xml
|
|
|
+<dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
+</dependency>
|
|
|
+```
|
|
|
+
|
|
|
+**springboot-boot-starter-xxx**:就是spring-boot的场景启动器
|
|
|
+
|
|
|
+**spring-boot-starter-web**:帮我们导入了web模块正常运行所依赖的组件;
|
|
|
+
|
|
|
+SpringBoot将所有的功能场景都抽取出来,做成一个个的starter (启动器),只需要在项目中引入这些starter即可,所有相关的依赖都会导入进来 , 我们要用什么功能就导入什么样的场景启动器即可 ;我们未来也可以自己自定义 starter;
|
|
|
+
|
|
|
+> **主启动类**
|
|
|
+
|
|
|
+分析完了 pom.xml 来看看这个启动类
|
|
|
+
|
|
|
+## 2.3、默认的主启动类
|
|
|
+
|
|
|
+```java
|
|
|
+//@SpringBootApplication 来标注一个主程序类
|
|
|
+//说明这是一个Spring Boot应用
|
|
|
+@SpringBootApplication
|
|
|
+public class SpringbootApplication {
|
|
|
+
|
|
|
+ public static void main(String[] args) {
|
|
|
+ //以为是启动了一个方法,没想到启动了一个服务
|
|
|
+ SpringApplication.run(SpringbootApplication.class, args);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+但是**一个简单的启动类并不简单!**我们来分析一下这些注解都干了什么
|
|
|
+
|
|
|
+## 2.4、@SpringBootApplication
|
|
|
+
|
|
|
+作用:标注在某个类上说明这个类是SpringBoot的主配置类 , SpringBoot就应该运行这个类的main方法来启动SpringBoot应用;
|
|
|
+
|
|
|
+进入这个注解:可以看到上面还有很多其他注解!
|
|
|
+
|
|
|
+```java
|
|
|
+@SpringBootConfiguration
|
|
|
+@EnableAutoConfiguration
|
|
|
+@ComponentScan(
|
|
|
+ excludeFilters = {@Filter(
|
|
|
+ type = FilterType.CUSTOM,
|
|
|
+ classes = {TypeExcludeFilter.class}
|
|
|
+), @Filter(
|
|
|
+ type = FilterType.CUSTOM,
|
|
|
+ classes = {AutoConfigurationExcludeFilter.class}
|
|
|
+)}
|
|
|
+)
|
|
|
+public @interface SpringBootApplication {
|
|
|
+ // ......
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+## 2.5、@ComponentScan
|
|
|
+
|
|
|
+这个注解在Spring中很重要 ,它对应XML配置中的元素。
|
|
|
+
|
|
|
+作用:自动扫描并加载符合条件的组件或者bean , 将这个bean定义加载到IOC容器中
|
|
|
+
|
|
|
+## 2.6、@SpringBootConfiguration
|
|
|
+
|
|
|
+作用:SpringBoot的配置类 ,标注在某个类上 , 表示这是一个SpringBoot的配置类;
|
|
|
+
|
|
|
+我们继续进去这个注解查看
|
|
|
+
|
|
|
+```java
|
|
|
+// 点进去得到下面的 @Component
|
|
|
+@Configuration
|
|
|
+public @interface SpringBootConfiguration {}
|
|
|
+
|
|
|
+@Component
|
|
|
+public @interface Configuration {}
|
|
|
+```
|
|
|
+
|
|
|
+这里的 @Configuration,说明这是一个配置类 ,配置类就是对应Spring的xml 配置文件;
|
|
|
+
|
|
|
+里面的 @Component 这就说明,启动类本身也是Spring中的一个组件而已,负责启动应用!
|
|
|
+
|
|
|
+我们回到 SpringBootApplication 注解中继续看。
|
|
|
+
|
|
|
+## 2.7、@EnableAutoConfiguration
|
|
|
+
|
|
|
+**@EnableAutoConfiguration :开启自动配置功能**
|
|
|
+
|
|
|
+以前我们需要自己配置的东西,而现在SpringBoot可以自动帮我们配置 ;@EnableAutoConfiguration告诉SpringBoot开启自动配置功能,这样自动配置才能生效;
|
|
|
+
|
|
|
+点进注解接续查看:
|
|
|
+
|
|
|
+**@AutoConfigurationPackage :自动配置包**
|
|
|
+
|
|
|
+```java
|
|
|
+@Import({Registrar.class})
|
|
|
+public @interface AutoConfigurationPackage {
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+**@import** :Spring底层注解@import , 给容器中导入一个组件
|
|
|
+
|
|
|
+Registrar.class 作用:将主启动类的所在包及包下面所有子包里面的所有组件扫描到Spring容器 ;
|
|
|
+
|
|
|
+这个分析完了,退到上一步,继续看
|
|
|
+
|
|
|
+**@Import({AutoConfigurationImportSelector.class}) :给容器导入组件 ;**
|
|
|
+
|
|
|
+AutoConfigurationImportSelector :自动配置导入选择器,那么它会导入哪些组件的选择器呢?我们点击去这个类看源码:
|
|
|
+
|
|
|
+1、这个类中有一个这样的方法
|
|
|
+
|
|
|
+```java
|
|
|
+// 获得候选的配置
|
|
|
+protected List<String> getCandidateConfigurations(AnnotationMetadata metadata, AnnotationAttributes attributes) {
|
|
|
+ //这里的getSpringFactoriesLoaderFactoryClass()方法
|
|
|
+ //返回的就是我们最开始看的启动自动导入配置文件的注解类;EnableAutoConfiguration
|
|
|
+ List<String> configurations = SpringFactoriesLoader.loadFactoryNames(this.getSpringFactoriesLoaderFactoryClass(), this.getBeanClassLoader());
|
|
|
+ Assert.notEmpty(configurations, "No auto configuration classes found in META-INF/spring.factories. If you are using a custom packaging, make sure that file is correct.");
|
|
|
+ return configurations;
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+2、这个方法又调用了 SpringFactoriesLoader 类的静态方法!我们进入SpringFactoriesLoader类loadFactoryNames() 方法
|
|
|
+
|
|
|
+```java
|
|
|
+public static List<String> loadFactoryNames(Class<?> factoryClass, @Nullable ClassLoader classLoader) {
|
|
|
+ String factoryClassName = factoryClass.getName();
|
|
|
+ //这里它又调用了 loadSpringFactories 方法
|
|
|
+ return (List)loadSpringFactories(classLoader).getOrDefault(factoryClassName, Collections.emptyList());
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+3、我们继续点击查看 loadSpringFactories 方法
|
|
|
+
|
|
|
+```java
|
|
|
+private static Map<String, List<String>> loadSpringFactories(@Nullable ClassLoader classLoader) {
|
|
|
+ //获得classLoader , 我们返回可以看到这里得到的就是EnableAutoConfiguration标注的类本身
|
|
|
+ MultiValueMap<String, String> result = (MultiValueMap)cache.get(classLoader);
|
|
|
+ if (result != null) {
|
|
|
+ return result;
|
|
|
+ } else {
|
|
|
+ try {
|
|
|
+ //去获取一个资源 "META-INF/spring.factories"
|
|
|
+ Enumeration<URL> urls = classLoader != null ? classLoader.getResources("META-INF/spring.factories") : ClassLoader.getSystemResources("META-INF/spring.factories");
|
|
|
+ LinkedMultiValueMap result = new LinkedMultiValueMap();
|
|
|
+
|
|
|
+ //将读取到的资源遍历,封装成为一个Properties
|
|
|
+ while(urls.hasMoreElements()) {
|
|
|
+ URL url = (URL)urls.nextElement();
|
|
|
+ UrlResource resource = new UrlResource(url);
|
|
|
+ Properties properties = PropertiesLoaderUtils.loadProperties(resource);
|
|
|
+ Iterator var6 = properties.entrySet().iterator();
|
|
|
+
|
|
|
+ while(var6.hasNext()) {
|
|
|
+ Entry<?, ?> entry = (Entry)var6.next();
|
|
|
+ String factoryClassName = ((String)entry.getKey()).trim();
|
|
|
+ String[] var9 = StringUtils.commaDelimitedListToStringArray((String)entry.getValue());
|
|
|
+ int var10 = var9.length;
|
|
|
+
|
|
|
+ for(int var11 = 0; var11 < var10; ++var11) {
|
|
|
+ String factoryName = var9[var11];
|
|
|
+ result.add(factoryClassName, factoryName.trim());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ cache.put(classLoader, result);
|
|
|
+ return result;
|
|
|
+ } catch (IOException var13) {
|
|
|
+ throw new IllegalArgumentException("Unable to load factories from location [META-INF/spring.factories]", var13);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+4、发现一个多次出现的文件:spring.factories,全局搜索它
|
|
|
+
|
|
|
+## 2.8、spring.factories
|
|
|
+
|
|
|
+我们根据源头打开spring.factories , 看到了很多自动配置的文件;这就是自动配置根源所在!
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+**WebMvcAutoConfiguration**
|
|
|
+
|
|
|
+我们在上面的自动配置类随便找一个打开看看,比如 :WebMvcAutoConfiguration
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+可以看到这些一个个的都是JavaConfig配置类,而且都注入了一些Bean,可以找一些自己认识的类,看着熟悉一下!
|
|
|
+
|
|
|
+所以,自动配置真正实现是从classpath中搜寻所有的META-INF/spring.factories配置文件 ,并将其中对应的 org.springframework.boot.autoconfigure. 包下的配置项,通过反射实例化为对应标注了 @Configuration的JavaConfig形式的IOC容器配置类 , 然后将这些都汇总成为一个实例并加载到IOC容器中。
|
|
|
+
|
|
|
+**结论:**
|
|
|
+
|
|
|
+1. SpringBoot在启动的时候从类路径下的META-INF/spring.factories中获取EnableAutoConfiguration指定的值
|
|
|
+2. 将这些值作为自动配置类导入容器 , 自动配置类就生效 , 帮我们进行自动配置工作;
|
|
|
+3. 整个J2EE的整体解决方案和自动配置都在springboot-autoconfigure的jar包中;
|
|
|
+4. 它会给容器中导入非常多的自动配置类 (xxxAutoConfiguration), 就是给容器中导入这个场景需要的所有组件 , 并配置好这些组件 ;
|
|
|
+5. 有了自动配置类 , 免去了我们手动编写配置注入功能组件等的工作;
|
|
|
+
|
|
|
+**现在大家应该大概的了解了下,SpringBoot的运行原理,后面我们还会深化一次!**
|
|
|
+
|
|
|
+> **SpringApplication**
|
|
|
+
|
|
|
+## 2.9、不简单的方法
|
|
|
+
|
|
|
+我最初以为就是运行了一个main方法,没想到却开启了一个服务;
|
|
|
+
|
|
|
+```java
|
|
|
+@SpringBootApplication
|
|
|
+public class SpringbootApplication {
|
|
|
+ public static void main(String[] args) {
|
|
|
+ SpringApplication.run(SpringbootApplication.class, args);
|
|
|
+ }
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+**SpringApplication.run分析**
|
|
|
+
|
|
|
+分析该方法主要分两部分,一部分是SpringApplication的实例化,二是run方法的执行;
|
|
|
+
|
|
|
+## 2.10、SpringApplication
|
|
|
+
|
|
|
+**这个类主要做了以下四件事情:**
|
|
|
+
|
|
|
+1、推断应用的类型是普通的项目还是Web项目
|
|
|
+
|
|
|
+2、查找并加载所有可用初始化器 , 设置到initializers属性中
|
|
|
+
|
|
|
+3、找出所有的应用程序监听器,设置到listeners属性中
|
|
|
+
|
|
|
+4、推断并设置main方法的定义类,找到运行的主类
|
|
|
+
|
|
|
+查看构造器:
|
|
|
+
|
|
|
+```java
|
|
|
+public SpringApplication(ResourceLoader resourceLoader, Class... primarySources) {
|
|
|
+ // ......
|
|
|
+ this.webApplicationType = WebApplicationType.deduceFromClasspath();
|
|
|
+ this.setInitializers(this.getSpringFactoriesInstances();
|
|
|
+ this.setListeners(this.getSpringFactoriesInstances(ApplicationListener.class));
|
|
|
+ this.mainApplicationClass = this.deduceMainApplicationClass();
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+## 2.11、run方法流程分析
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+# 3、SpringBoot:yaml配置注入
|
|
|
+
|
|
|
+***
|
|
|
+
|
|
|
+yaml语法学习
|
|
|
+
|
|
|
+## 3.1、配置文件
|
|
|
+
|
|
|
+SpringBoot使用一个全局的配置文件 , 配置文件名称是固定的
|
|
|
+
|
|
|
+- application.properties
|
|
|
+- - 语法结构 :key=value
|
|
|
+- application.yml
|
|
|
+- - 语法结构 :key:空格 value
|
|
|
+
|
|
|
+**配置文件的作用 :**修改SpringBoot自动配置的默认值,因为SpringBoot在底层都给我们自动配置好了;
|
|
|
+
|
|
|
+比如我们可以在配置文件中修改Tomcat 默认启动的端口号!测试一下!
|
|
|
+
|
|
|
+-
|
|
|
+
|
|
|
+```ini
|
|
|
+server.port=8081
|
|
|
+```
|
|
|
+
|
|
|
+## 3.2、yaml概述
|
|
|
+
|
|
|
+YAML是 "YAML Ain't a Markup Language" (YAML不是一种标记语言)的递归缩写。在开发的这种语言时,YAML 的意思其实是:"Yet Another Markup Language"(仍是一种标记语言)
|
|
|
+
|
|
|
+**这种语言以数据\**\*\*作\*\**\*为中心,而不是以标记语言为重点!**
|
|
|
+
|
|
|
+以前的配置文件,大多数都是使用xml来配置;比如一个简单的端口配置,我们来对比下yaml和xml
|
|
|
+
|
|
|
+传统xml配置:
|
|
|
+
|
|
|
+```xml
|
|
|
+<server>
|
|
|
+ <port>8081<port>
|
|
|
+</server>
|
|
|
+```
|
|
|
+
|
|
|
+yaml配置:
|
|
|
+
|
|
|
+```yml
|
|
|
+server:
|
|
|
+ prot: 8080
|
|
|
+```
|
|
|
+
|
|
|
+## 3.3、yaml基础语法
|
|
|
+
|
|
|
+说明:语法要求严格!
|
|
|
+
|
|
|
+1、空格不能省略
|
|
|
+
|
|
|
+2、以缩进来控制层级关系,只要是左边对齐的一列数据都是同一个层级的。
|
|
|
+
|
|
|
+3、属性和值的大小写都是十分敏感的。
|
|
|
+
|
|
|
+**字面量:普通的值 [ 数字,布尔值,字符串 ]**
|
|
|
+
|
|
|
+字面量直接写在后面就可以 , 字符串默认不用加上双引号或者单引号;
|
|
|
+
|
|
|
+```yml
|
|
|
+k: v
|
|
|
+```
|
|
|
+
|
|
|
+注意:
|
|
|
+
|
|
|
+- “ ” 双引号,不会转义字符串里面的特殊字符 , 特殊字符会作为本身想表示的意思;
|
|
|
+
|
|
|
+ 比如 :name: "kuang \n shen" 输出 :kuang 换行 shen
|
|
|
+
|
|
|
+- '' 单引号,会转义特殊字符 , 特殊字符最终会变成和普通字符一样输出
|
|
|
+
|
|
|
+ 比如 :name: ‘kuang \n shen’ 输出 :kuang \n shen
|
|
|
+
|
|
|
+**对象、Map(键值对)**
|
|
|
+
|
|
|
+```yml
|
|
|
+#对象、Map格式
|
|
|
+k:
|
|
|
+ v1:
|
|
|
+ v2:
|
|
|
+```
|
|
|
+
|
|
|
+在下一行来写对象的属性和值得关系,注意缩进;比如:
|
|
|
+
|
|
|
+```yml
|
|
|
+student:
|
|
|
+ name: qinjiang
|
|
|
+ age: 3
|
|
|
+```
|
|
|
+
|
|
|
+行内写法
|
|
|
+
|
|
|
+```yml
|
|
|
+student: {name: qinjiang,age: 3}
|
|
|
+```
|
|
|
+
|
|
|
+**数组( List、set )**
|
|
|
+
|
|
|
+用 - 值表示数组中的一个元素,比如:
|
|
|
+
|
|
|
+```yml
|
|
|
+pets:
|
|
|
+ - cat
|
|
|
+ - dog
|
|
|
+ - pig
|
|
|
+```
|
|
|
+
|
|
|
+行内写法
|
|
|
+
|
|
|
+```yml
|
|
|
+pets: [cat,dog,pig]
|
|
|
+```
|
|
|
+
|
|
|
+**修改SpringBoot的默认端口号**
|
|
|
+
|
|
|
+配置文件中添加,端口号的参数,就可以切换端口;
|
|
|
+
|
|
|
+```yml
|
|
|
+server:
|
|
|
+ port: 8082
|
|
|
+```
|
|
|
+
|
|
|
+注入配置文件
|
|
|
+
|
|
|
+yaml文件更强大的地方在于,他可以给我们的实体类直接注入匹配值!
|
|
|
+
|
|
|
+## 3.4、yaml注入配置文件
|
|
|
+
|
|
|
+1、在springboot项目中的resources目录下新建一个文件 application.yml
|
|
|
+
|
|
|
+2、编写一个实体类 Dog;
|
|
|
+
|
|
|
+```java
|
|
|
+package com.kuang.springboot.pojo;
|
|
|
+
|
|
|
+@Component //注册bean到容器中
|
|
|
+public class Dog {
|
|
|
+ private String name;
|
|
|
+ private Integer age;
|
|
|
+
|
|
|
+ //有参无参构造、get、set方法、toString()方法
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+3、思考,我们原来是如何给bean注入属性值的!@Value,给狗狗类测试一下:
|
|
|
+
|
|
|
+```java
|
|
|
+@Component //注册bean
|
|
|
+public class Dog {
|
|
|
+ @Value("阿黄")
|
|
|
+ private String name;
|
|
|
+ @Value("18")
|
|
|
+ private Integer age;
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+4、在SpringBoot的测试类下注入狗狗输出一下;
|
|
|
+
|
|
|
+```java
|
|
|
+@SpringBootTest
|
|
|
+class DemoApplicationTests {
|
|
|
+
|
|
|
+ @Autowired //将狗狗自动注入进来
|
|
|
+ Dog dog;
|
|
|
+
|
|
|
+ @Test
|
|
|
+ public void contextLoads() {
|
|
|
+ System.out.println(dog); //打印看下狗狗对象
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+结果成功输出,@Value注入成功,这是我们原来的办法对吧。
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+5、我们在编写一个复杂一点的实体类:Person 类
|
|
|
+
|
|
|
+```java
|
|
|
+@Component //注册bean到容器中
|
|
|
+public class Person {
|
|
|
+ private String name;
|
|
|
+ private Integer age;
|
|
|
+ private Boolean happy;
|
|
|
+ private Date birth;
|
|
|
+ private Map<String,Object> maps;
|
|
|
+ private List<Object> lists;
|
|
|
+ private Dog dog;
|
|
|
+
|
|
|
+ //有参无参构造、get、set方法、toString()方法
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+6、我们来使用yaml配置的方式进行注入,大家写的时候注意区别和优势,我们编写一个yaml配置!
|
|
|
+
|
|
|
+```yml
|
|
|
+person:
|
|
|
+ name: qinjiang
|
|
|
+ age: 3
|
|
|
+ happy: false
|
|
|
+ birth: 2000/01/01
|
|
|
+ maps: {k1: v1,k2: v2}
|
|
|
+ lists:
|
|
|
+ - code
|
|
|
+ - girl
|
|
|
+ - music
|
|
|
+ dog:
|
|
|
+ name: 旺财
|
|
|
+ age: 1
|
|
|
+```
|
|
|
+
|
|
|
+7、我们刚才已经把person这个对象的所有值都写好了,我们现在来注入到我们的类中!
|
|
|
+
|
|
|
+```java
|
|
|
+/*
|
|
|
+@ConfigurationProperties作用:
|
|
|
+将配置文件中配置的每一个属性的值,映射到这个组件中;
|
|
|
+告诉SpringBoot将本类中的所有属性和配置文件中相关的配置进行绑定
|
|
|
+参数 prefix = “person” : 将配置文件中的person下面的所有属性一一对应
|
|
|
+*/
|
|
|
+@Component //注册bean
|
|
|
+@ConfigurationProperties(prefix = "person")
|
|
|
+public class Person {
|
|
|
+ private String name;
|
|
|
+ private Integer age;
|
|
|
+ private Boolean happy;
|
|
|
+ private Date birth;
|
|
|
+ private Map<String,Object> maps;
|
|
|
+ private List<Object> lists;
|
|
|
+ private Dog dog;
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+8、IDEA 提示,springboot配置注解处理器没有找到,让我们看文档,我们可以查看文档,找到一个依赖!
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+```xml
|
|
|
+<!-- 导入配置文件处理器,配置文件进行绑定就会有提示,需要重启 -->
|
|
|
+<dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
+ <optional>true</optional>
|
|
|
+</dependency>
|
|
|
+```
|
|
|
+
|
|
|
+9、确认以上配置都OK之后,我们去测试类中测试一下:
|
|
|
+
|
|
|
+```java
|
|
|
+@SpringBootTest
|
|
|
+class DemoApplicationTests {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ Person person; //将person自动注入进来
|
|
|
+
|
|
|
+ @Test
|
|
|
+ public void contextLoads() {
|
|
|
+ System.out.println(person); //打印person信息
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+结果:所有值全部注入成功!
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+**yaml配置注入到实体类完全OK!**
|
|
|
+
|
|
|
+课堂测试:
|
|
|
+
|
|
|
+1、将配置文件的key 值 和 属性的值设置为不一样,则结果输出为null,注入失败
|
|
|
+
|
|
|
+2、在配置一个person2,然后将 @ConfigurationProperties(prefix = "person2") 指向我们的person2;
|
|
|
+
|
|
|
+## 3.5、加载指定的配置文件
|
|
|
+
|
|
|
+**@PropertySource :**加载指定的配置文件;
|
|
|
+
|
|
|
+**@configurationProperties**:默认从全局配置文件中获取值;
|
|
|
+
|
|
|
+1、我们去在resources目录下新建一个**person.properties**文件
|
|
|
+
|
|
|
+```properties
|
|
|
+name=kuangshen
|
|
|
+```
|
|
|
+
|
|
|
+2、然后在我们的代码中指定加载person.properties文件
|
|
|
+
|
|
|
+```java
|
|
|
+@PropertySource(value = "classpath:person.properties")
|
|
|
+@Component //注册bean
|
|
|
+public class Person {
|
|
|
+
|
|
|
+ @Value("${name}")
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ ......
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+3、再次输出测试一下:指定配置文件绑定成功!
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+## 3.6、配置文件占位符
|
|
|
+
|
|
|
+配置文件还可以编写占位符生成随机数
|
|
|
+
|
|
|
+```yml
|
|
|
+person:
|
|
|
+ name: qinjiang${random.uuid} # 随机uuid
|
|
|
+ age: ${random.int} # 随机int
|
|
|
+ happy: false
|
|
|
+ birth: 2000/01/01
|
|
|
+ maps: {k1: v1,k2: v2}
|
|
|
+ lists:
|
|
|
+ - code
|
|
|
+ - girl
|
|
|
+ - music
|
|
|
+ dog:
|
|
|
+ name: ${person.hello:other}_旺财
|
|
|
+ age: 1
|
|
|
+```
|
|
|
+
|
|
|
+## 3.7、回顾properties配置
|
|
|
+
|
|
|
+我们上面采用的yaml方法都是最简单的方式,开发中最常用的;也是springboot所推荐的!那我们来唠唠其他的实现方式,道理都是相同的;写还是那样写;配置文件除了yml还有我们之前常用的properties , 我们没有讲,我们来唠唠!
|
|
|
+
|
|
|
+【注意】properties配置文件在写中文的时候,会有乱码 , 我们需要去IDEA中设置编码格式为UTF-8;
|
|
|
+
|
|
|
+settings-->FileEncodings 中配置;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+**测试步骤:**
|
|
|
+
|
|
|
+1、新建一个实体类User
|
|
|
+
|
|
|
+```java
|
|
|
+@Component //注册bean
|
|
|
+public class User {
|
|
|
+ private String name;
|
|
|
+ private int age;
|
|
|
+ private String sex;
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+2、编辑配置文件 user.properties
|
|
|
+
|
|
|
+```properties
|
|
|
+user1.name=kuangshen
|
|
|
+user1.age=18user1.sex=男
|
|
|
+```
|
|
|
+
|
|
|
+3、我们在User类上使用@Value来进行注入!
|
|
|
+
|
|
|
+```java
|
|
|
+@Component //注册bean
|
|
|
+@PropertySource(value = "classpath:user.properties")
|
|
|
+public class User {
|
|
|
+ //直接使用@value
|
|
|
+ @Value("${user.name}") //从配置文件中取值
|
|
|
+ private String name;
|
|
|
+ @Value("#{9*2}") // #{SPEL} Spring表达式
|
|
|
+ private int age;
|
|
|
+ @Value("男") // 字面量
|
|
|
+ private String sex;
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+4、Springboot测试
|
|
|
+
|
|
|
+```ini
|
|
|
+user1.name=kuangshen
|
|
|
+user1.age=18
|
|
|
+user1.sex=男
|
|
|
+```
|
|
|
+
|
|
|
+结果正常输出:
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+## 3.8、对比小结
|
|
|
+
|
|
|
+@Value这个使用起来并不友好!我们需要为每个属性单独注解赋值,比较麻烦;我们来看个功能对比图
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+1、@ConfigurationProperties只需要写一次即可 , @Value则需要每个字段都添加
|
|
|
+
|
|
|
+2、松散绑定:这个什么意思呢? 比如我的yml中写的last-name,这个和lastName是一样的, - 后面跟着的字母默认是大写的。这就是松散绑定。可以测试一下
|
|
|
+
|
|
|
+3、JSR303数据校验 , 这个就是我们可以在字段是增加一层过滤器验证 , 可以保证数据的合法性
|
|
|
+
|
|
|
+4、复杂类型封装,yml中可以封装对象 , 使用value就不支持
|
|
|
+
|
|
|
+**结论:**
|
|
|
+
|
|
|
+配置yml和配置properties都可以获取到值 , 强烈推荐 yml;
|
|
|
+
|
|
|
+如果我们在某个业务中,只需要获取配置文件中的某个值,可以使用一下 @value;
|
|
|
+
|
|
|
+如果说,我们专门编写了一个JavaBean来和配置文件进行一一映射,就直接@configurationProperties,不要犹豫!
|
|
|
+
|
|
|
+# 4、SpringBoot:JSR303数据校验及多环境切换
|
|
|
+
|
|
|
+***
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+JSR303数据校验
|
|
|
+
|
|
|
+## 4.1、先看看如何使用
|
|
|
+
|
|
|
+Springboot中可以用@validated来校验数据,如果数据异常则会统一抛出异常,方便异常中心统一处理。我们这里来写个注解让我们的name只能支持Email格式;
|
|
|
+
|
|
|
+```java
|
|
|
+@Component //注册bean
|
|
|
+@ConfigurationProperties(prefix = "person")
|
|
|
+@Validated //数据校验
|
|
|
+public class Person {
|
|
|
+
|
|
|
+ @Email(message="邮箱格式错误") //name必须是邮箱格式
|
|
|
+ private String name;
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+运行结果 :default message [不是一个合法的电子邮件地址];
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+**使用数据校验,可以保证数据的正确性;**
|
|
|
+
|
|
|
+## 4.2、常见参数
|
|
|
+
|
|
|
+```java
|
|
|
+@NotNull(message="名字不能为空")
|
|
|
+private String userName;
|
|
|
+@Max(value=120,message="年龄最大不能查过120")
|
|
|
+private int age;
|
|
|
+@Email(message="邮箱格式错误")
|
|
|
+private String email;
|
|
|
+
|
|
|
+空检查
|
|
|
+@Null 验证对象是否为null
|
|
|
+@NotNull 验证对象是否不为null, 无法查检长度为0的字符串
|
|
|
+@NotBlank 检查约束字符串是不是Null还有被Trim的长度是否大于0,只对字符串,且会去掉前后空格.
|
|
|
+@NotEmpty 检查约束元素是否为NULL或者是EMPTY.
|
|
|
+
|
|
|
+Booelan检查
|
|
|
+@AssertTrue 验证 Boolean 对象是否为 true
|
|
|
+@AssertFalse 验证 Boolean 对象是否为 false
|
|
|
+
|
|
|
+长度检查
|
|
|
+@Size(min=, max=) 验证对象(Array,Collection,Map,String)长度是否在给定的范围之内
|
|
|
+@Length(min=, max=) string is between min and max included.
|
|
|
+
|
|
|
+日期检查
|
|
|
+@Past 验证 Date 和 Calendar 对象是否在当前时间之前
|
|
|
+@Future 验证 Date 和 Calendar 对象是否在当前时间之后
|
|
|
+@Pattern 验证 String 对象是否符合正则表达式的规则
|
|
|
+
|
|
|
+.......等等
|
|
|
+除此以外,我们还可以自定义一些数据校验规则
|
|
|
+```
|
|
|
+
|
|
|
+多环境切换
|
|
|
+
|
|
|
+profile是Spring对不同环境提供不同配置功能的支持,可以通过激活不同的环境版本,实现快速切换环境;
|
|
|
+
|
|
|
+## 4.3、多配置文件
|
|
|
+
|
|
|
+我们在主配置文件编写的时候,文件名可以是 application-{profile}.properties/yml , 用来指定多个环境版本;
|
|
|
+
|
|
|
+**例如:**
|
|
|
+
|
|
|
+application-test.properties 代表测试环境配置
|
|
|
+
|
|
|
+application-dev.properties 代表开发环境配置
|
|
|
+
|
|
|
+但是Springboot并不会直接启动这些配置文件,它**默认使用application.properties主配置文件**;
|
|
|
+
|
|
|
+我们需要通过一个配置来选择需要激活的环境:
|
|
|
+
|
|
|
+```properties
|
|
|
+#比如在配置文件中指定使用dev环境,我们可以通过设置不同的端口号进行测试;
|
|
|
+#我们启动SpringBoot,就可以看到已经切换到dev下的配置了;
|
|
|
+spring.profiles.active=dev
|
|
|
+```
|
|
|
+
|
|
|
+## 4.4、yaml的多文档块
|
|
|
+
|
|
|
+和properties配置文件中一样,但是使用yml去实现不需要创建多个配置文件,更加方便了 !
|
|
|
+
|
|
|
+```yml
|
|
|
+server:
|
|
|
+ port: 8081
|
|
|
+#选择要激活那个环境块
|
|
|
+spring:
|
|
|
+ profiles:
|
|
|
+ active: prod
|
|
|
+
|
|
|
+---
|
|
|
+server:
|
|
|
+ port: 8083
|
|
|
+spring:
|
|
|
+ profiles: dev #配置环境的名称
|
|
|
+
|
|
|
+
|
|
|
+---
|
|
|
+
|
|
|
+server:
|
|
|
+ port: 8084
|
|
|
+spring:
|
|
|
+ profiles: prod #配置环境的名称
|
|
|
+```
|
|
|
+
|
|
|
+**注意:如果yml和properties同时都配置了端口,并且没有激活其他环境 , 默认会使用properties配置文件的!**
|
|
|
+
|
|
|
+特殊符号
|
|
|
+
|
|
|
+1. --- yaml可以在同一个文件中,使用---表示一个文档的开始:
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+代表定义了两个profile,一个是development,一个是production;也常使用---来分割不同的内容,比如记录日志:
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+2. ...和---配合使用,在一个配置文件中代表一个文件的结束:
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+相当于在一个yaml中连续写了两个yaml配置项
|
|
|
+
|
|
|
+## 4.5、配置文件加载位置
|
|
|
+
|
|
|
+**外部加载配置文件的方式十分多,我们选择最常用的即可,在开发的资源文件中进行配置!**
|
|
|
+
|
|
|
+官方外部配置文件说明参考文档
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+springboot 启动会扫描以下位置的application.properties或者application.yml文件作为Spring boot的默认配置文件:
|
|
|
+
|
|
|
+```lua
|
|
|
+优先级1:项目路径下的config文件夹配置文件
|
|
|
+优先级2:项目路径下配置文件
|
|
|
+优先级3:资源路径下的config文件夹配置文件
|
|
|
+优先级4:资源路径下配置文件
|
|
|
+```
|
|
|
+
|
|
|
+优先级由高到底,高优先级的配置会覆盖低优先级的配置;
|
|
|
+
|
|
|
+**SpringBoot会从这四个位置全部加载主配置文件;互补配置;**
|
|
|
+
|
|
|
+我们在最低级的配置文件中设置一个项目访问路径的配置来测试互补问题;
|
|
|
+
|
|
|
+```properties
|
|
|
+#配置项目的访问路径
|
|
|
+server.servlet.context-path=/kuang
|
|
|
+```
|
|
|
+
|
|
|
+## 4.6、拓展,运维小技巧
|
|
|
+
|
|
|
+指定位置加载配置文件
|
|
|
+
|
|
|
+我们还可以通过spring.config.location来改变默认的配置文件位置
|
|
|
+
|
|
|
+项目打包好以后,我们可以使用命令行参数的形式,启动项目的时候来指定配置文件的新位置;这种情况,一般是后期运维做的多,相同配置,外部指定的配置文件优先级最高
|
|
|
+
|
|
|
+# 5、SpringBoot:自动配置原理
|
|
|
+
|
|
|
+***
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+自动配置原理
|
|
|
+
|
|
|
+配置文件到底能写什么?怎么写?
|
|
|
+
|
|
|
+SpringBoot官方文档中有大量的配置,我们无法全部记住
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+## 5.1、分析自动配置原理
|
|
|
+
|
|
|
+我们以**HttpEncodingAutoConfiguration(Http编码自动配置)**为例解释自动配置原理;
|
|
|
+
|
|
|
+```java
|
|
|
+//表示这是一个配置类,和以前编写的配置文件一样,也可以给容器中添加组件;
|
|
|
+@Configuration
|
|
|
+
|
|
|
+//启动指定类的ConfigurationProperties功能;
|
|
|
+ //进入这个HttpProperties查看,将配置文件中对应的值和HttpProperties绑定起来;
|
|
|
+ //并把HttpProperties加入到ioc容器中
|
|
|
+@EnableConfigurationProperties({HttpProperties.class})
|
|
|
+
|
|
|
+//Spring底层@Conditional注解
|
|
|
+ //根据不同的条件判断,如果满足指定的条件,整个配置类里面的配置就会生效;
|
|
|
+ //这里的意思就是判断当前应用是否是web应用,如果是,当前配置类生效
|
|
|
+@ConditionalOnWebApplication(
|
|
|
+ type = Type.SERVLET
|
|
|
+)
|
|
|
+
|
|
|
+//判断当前项目有没有这个类CharacterEncodingFilter;SpringMVC中进行乱码解决的过滤器;
|
|
|
+@ConditionalOnClass({CharacterEncodingFilter.class})
|
|
|
+
|
|
|
+//判断配置文件中是否存在某个配置:spring.http.encoding.enabled;
|
|
|
+ //如果不存在,判断也是成立的
|
|
|
+ //即使我们配置文件中不配置pring.http.encoding.enabled=true,也是默认生效的;
|
|
|
+@ConditionalOnProperty(
|
|
|
+ prefix = "spring.http.encoding",
|
|
|
+ value = {"enabled"},
|
|
|
+ matchIfMissing = true
|
|
|
+)
|
|
|
+
|
|
|
+public class HttpEncodingAutoConfiguration {
|
|
|
+ //他已经和SpringBoot的配置文件映射了
|
|
|
+ private final Encoding properties;
|
|
|
+ //只有一个有参构造器的情况下,参数的值就会从容器中拿
|
|
|
+ public HttpEncodingAutoConfiguration(HttpProperties properties) {
|
|
|
+ this.properties = properties.getEncoding();
|
|
|
+ }
|
|
|
+
|
|
|
+ //给容器中添加一个组件,这个组件的某些值需要从properties中获取
|
|
|
+ @Bean
|
|
|
+ @ConditionalOnMissingBean //判断容器没有这个组件?
|
|
|
+ public CharacterEncodingFilter characterEncodingFilter() {
|
|
|
+ CharacterEncodingFilter filter = new OrderedCharacterEncodingFilter();
|
|
|
+ filter.setEncoding(this.properties.getCharset().name());
|
|
|
+ filter.setForceRequestEncoding(this.properties.shouldForce(org.springframework.boot.autoconfigure.http.HttpProperties.Encoding.Type.REQUEST));
|
|
|
+ filter.setForceResponseEncoding(this.properties.shouldForce(org.springframework.boot.autoconfigure.http.HttpProperties.Encoding.Type.RESPONSE));
|
|
|
+ return filter;
|
|
|
+ }
|
|
|
+ //。。。。。。。
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+**一句话总结 :根据当前不同的条件判断,决定这个配置类是否生效!**
|
|
|
+
|
|
|
+- 一但这个配置类生效;这个配置类就会给容器中添加各种组件;
|
|
|
+- 这些组件的属性是从对应的properties类中获取的,这些类里面的每一个属性又是和配置文件绑定的;
|
|
|
+- 所有在配置文件中能配置的属性都是在xxxxProperties类中封装着;
|
|
|
+- 配置文件能配置什么就可以参照某个功能对应的这个属性类
|
|
|
+
|
|
|
+```java
|
|
|
+//从配置文件中获取指定的值和bean的属性进行绑定
|
|
|
+@ConfigurationProperties(prefix = "spring.http")
|
|
|
+public class HttpProperties {
|
|
|
+ // .....
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+我们去配置文件里面试试前缀,看提示!
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+**这就是自动装配的原理!**
|
|
|
+
|
|
|
+## 5.2、精髓
|
|
|
+
|
|
|
+1、SpringBoot启动会加载大量的自动配置类
|
|
|
+
|
|
|
+2、我们看我们需要的功能有没有在SpringBoot默认写好的自动配置类当中;
|
|
|
+
|
|
|
+3、我们再来看这个自动配置类中到底配置了哪些组件;(只要我们要用的组件存在在其中,我们就不需要再手动配置了)
|
|
|
+
|
|
|
+4、给容器中自动配置类添加组件的时候,会从properties类中获取某些属性。我们只需要在配置文件中指定这些属性的值即可;
|
|
|
+
|
|
|
+**xxxxAutoConfigurartion:自动配置类;**给容器中添加组件
|
|
|
+
|
|
|
+**xxxxProperties:封装配置文件中相关属性;**
|
|
|
+
|
|
|
+## 5.3、了解:@Conditional
|
|
|
+
|
|
|
+了解完自动装配的原理后,我们来关注一个细节问题,**自动配置类必须在一定的条件下才能生效;**
|
|
|
+
|
|
|
+**@Conditional派生注解(Spring注解版原生的@Conditional作用)**
|
|
|
+
|
|
|
+作用:必须是@Conditional指定的条件成立,才给容器中添加组件,配置配里面的所有内容才生效;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+**那么多的自动配置类,必须在一定的条件下才能生效;也就是说,我们加载了这么多的配置类,但不是所有的都生效了。**
|
|
|
+
|
|
|
+我们怎么知道哪些自动配置类生效?
|
|
|
+
|
|
|
+**我们可以通过启用 debug=true属性;来让控制台打印自动配置报告,这样我们就可以很方便的知道哪些自动配置类生效;**
|
|
|
+
|
|
|
+```properties
|
|
|
+#开启springboot的调试类
|
|
|
+debug=true
|
|
|
+```
|
|
|
+
|
|
|
+**Positive matches:(自动配置类启用的:正匹配)**
|
|
|
+
|
|
|
+**Negative matches:(没有启动,没有匹配成功的自动配置类:负匹配)**
|
|
|
+
|
|
|
+**Unconditional classes: (没有条件的类)**
|
|
|
+
|
|
|
+【演示:查看输出的日志】
|
|
|
+
|
|
|
+掌握吸收理解原理,即可以不变应万变!
|
|
|
+
|
|
|
+# 6、SpringBoot:Web开发静态资源处理
|
|
|
+
|
|
|
+***
|
|
|
+
|
|
|
+Web开发探究
|
|
|
+
|
|
|
+## 6.1、简介
|
|
|
+
|
|
|
+好的,同学们,那么接下来呢,我们开始学习SpringBoot与Web开发,从这一章往后,就属于我们实战部分的内容了;
|
|
|
+
|
|
|
+其实SpringBoot的东西用起来非常简单,因为SpringBoot最大的特点就是自动装配。
|
|
|
+
|
|
|
+**使用SpringBoot的步骤:**
|
|
|
+
|
|
|
+1、创建一个SpringBoot应用,选择我们需要的模块,SpringBoot就会默认将我们的需要的模块自动配置好
|
|
|
+
|
|
|
+2、手动在配置文件中配置部分配置项目就可以运行起来了
|
|
|
+
|
|
|
+3、专注编写业务代码,不需要考虑以前那样一大堆的配置了。
|
|
|
+
|
|
|
+要熟悉掌握开发,之前学习的自动配置的原理一定要搞明白!
|
|
|
+
|
|
|
+比如SpringBoot到底帮我们配置了什么?我们能不能修改?我们能修改哪些配置?我们能不能扩展?
|
|
|
+
|
|
|
+- 向容器中自动配置组件 :*** Autoconfiguration
|
|
|
+- 自动配置类,封装配置文件的内容:***Properties
|
|
|
+
|
|
|
+没事就找找类,看看自动装配原理!
|
|
|
+
|
|
|
+我们之后来进行一个单体项目的小项目测试,让大家能够快速上手开发!
|
|
|
+
|
|
|
+静态资源处理
|
|
|
+
|
|
|
+## 6.2、静态资源映射规则
|
|
|
+
|
|
|
+**首先,我们搭建一个普通的SpringBoot项目,回顾一下HelloWorld程序!**
|
|
|
+
|
|
|
+写请求非常简单,那我们要引入我们前端资源,我们项目中有许多的静态资源,比如css,js等文件,这个SpringBoot怎么处理呢?
|
|
|
+
|
|
|
+如果我们是一个web应用,我们的main下会有一个webapp,我们以前都是将所有的页面导在这里面的,对吧!但是我们现在的pom呢,打包方式是为jar的方式,那么这种方式SpringBoot能不能来给我们写页面呢?当然是可以的,但是SpringBoot对于静态资源放置的位置,是有规定的!
|
|
|
+
|
|
|
+**我们先来聊聊这个静态资源映射规则:**
|
|
|
+
|
|
|
+SpringBoot中,SpringMVC的web配置都在 WebMvcAutoConfiguration 这个配置类里面;
|
|
|
+
|
|
|
+我们可以去看看 WebMvcAutoConfigurationAdapter 中有很多配置方法;
|
|
|
+
|
|
|
+有一个方法:addResourceHandlers 添加资源处理
|
|
|
+
|
|
|
+```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();
|
|
|
+ // webjars 配置
|
|
|
+ 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));
|
|
|
+ }
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+读一下源代码:比如所有的 /webjars/** , 都需要去 classpath:/META-INF/resources/webjars/ 找对应的资源;
|
|
|
+
|
|
|
+## 6.3、什么是webjars 呢?
|
|
|
+
|
|
|
+Webjars本质就是以jar包的方式引入我们的静态资源 , 我们以前要导入一个静态资源文件,直接导入即可。
|
|
|
+
|
|
|
+使用SpringBoot需要使用Webjars,我们可以去搜索一下:
|
|
|
+
|
|
|
+网站:[https://www.webjars.org](https://www.webjars.org/)
|
|
|
+
|
|
|
+要使用jQuery,我们只要要引入jQuery对应版本的pom依赖即可!
|
|
|
+
|
|
|
+```xml
|
|
|
+<dependency>
|
|
|
+ <groupId>org.webjars</groupId>
|
|
|
+ <artifactId>jquery</artifactId>
|
|
|
+ <version>3.4.1</version>
|
|
|
+</dependency>
|
|
|
+```
|
|
|
+
|
|
|
+导入完毕,查看webjars目录结构,并访问Jquery.js文件!
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+访问:只要是静态资源,SpringBoot就会去对应的路径寻找资源,我们这里访问:http://localhost:8080/webjars/jquery/3.4.1/jquery.js
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+## 6.4、第二种静态资源映射规则
|
|
|
+
|
|
|
+那我们项目中要是使用自己的静态资源该怎么导入呢?我们看下一行代码;
|
|
|
+
|
|
|
+我们去找staticPathPattern发现第二种映射规则 :/** , 访问当前的项目任意资源,它会去找 resourceProperties 这个类,我们可以点进去看一下分析:
|
|
|
+
|
|
|
+```java
|
|
|
+// 进入方法
|
|
|
+public String[] getStaticLocations() {
|
|
|
+ return this.staticLocations;
|
|
|
+}
|
|
|
+// 找到对应的值
|
|
|
+private String[] staticLocations = CLASSPATH_RESOURCE_LOCATIONS;
|
|
|
+// 找到路径
|
|
|
+private static final String[] CLASSPATH_RESOURCE_LOCATIONS = {
|
|
|
+ "classpath:/META-INF/resources/",
|
|
|
+ "classpath:/resources/",
|
|
|
+ "classpath:/static/",
|
|
|
+ "classpath:/public/"
|
|
|
+};
|
|
|
+```
|
|
|
+
|
|
|
+ResourceProperties 可以设置和我们静态资源有关的参数;这里面指向了它会去寻找资源的文件夹,即上面数组的内容。
|
|
|
+
|
|
|
+所以得出结论,以下四个目录存放的静态资源可以被我们识别:
|
|
|
+
|
|
|
+```java
|
|
|
+"classpath:/META-INF/resources/"
|
|
|
+"classpath:/resources/"
|
|
|
+"classpath:/static/"
|
|
|
+"classpath:/public/"
|
|
|
+```
|
|
|
+
|
|
|
+我们可以在resources根目录下新建对应的文件夹,都可以存放我们的静态文件;
|
|
|
+
|
|
|
+比如我们访问 http://localhost:8080/1.js , 他就会去这些文件夹中寻找对应的静态资源文件;
|
|
|
+
|
|
|
+## 6.5、自定义静态资源路径
|
|
|
+
|
|
|
+我们也可以自己通过配置文件来指定一下,哪些文件夹是需要我们放静态资源文件的,在application.properties中配置;
|
|
|
+
|
|
|
+```properties
|
|
|
+spring.resources.static-locations=classpath:/coding/,classpath:/kuang/
|
|
|
+```
|
|
|
+
|
|
|
+一旦自己定义了静态文件夹的路径,原来的自动配置就都会失效了!
|
|
|
+
|
|
|
+首页处理
|
|
|
+
|
|
|
+静态资源文件夹说完后,我们继续向下看源码!可以看到一个欢迎页的映射,就是我们的首页!
|
|
|
+
|
|
|
+```java
|
|
|
+@Bean
|
|
|
+public WelcomePageHandlerMapping welcomePageHandlerMapping(ApplicationContext applicationContext, FormattingConversionService mvcConversionService,ResourceUrlProvider mvcResourceUrlProvider) {
|
|
|
+ WelcomePageHandlerMapping welcomePageHandlerMapping = new WelcomePageHandlerMapping(
|
|
|
+ new TemplateAvailabilityProviders(applicationContext), applicationContext, getWelcomePage(), // getWelcomePage 获得欢迎页
|
|
|
+ this.mvcProperties.getStaticPathPattern());
|
|
|
+ welcomePageHandlerMapping.setInterceptors(getInterceptors(mvcConversionService, mvcResourceUrlProvider));
|
|
|
+ return welcomePageHandlerMapping;
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+点进去继续看
|
|
|
+
|
|
|
+```java
|
|
|
+private Optional<Resource> getWelcomePage() {
|
|
|
+ String[] locations = getResourceLocations(this.resourceProperties.getStaticLocations());
|
|
|
+ // ::是java8 中新引入的运算符
|
|
|
+ // Class::function的时候function是属于Class的,应该是静态方法。
|
|
|
+ // this::function的funtion是属于这个对象的。
|
|
|
+ // 简而言之,就是一种语法糖而已,是一种简写
|
|
|
+ return Arrays.stream(locations).map(this::getIndexHtml).filter(this::isReadable).findFirst();
|
|
|
+}
|
|
|
+// 欢迎页就是一个location下的的 index.html 而已
|
|
|
+private Resource getIndexHtml(String location) {
|
|
|
+ return this.resourceLoader.getResource(location + "index.html");
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+欢迎页,静态资源文件夹下的所有 index.html 页面;被 /** 映射。
|
|
|
+
|
|
|
+比如我访问 http://localhost:8080/ ,就会找静态资源文件夹下的 index.html
|
|
|
+
|
|
|
+新建一个 index.html ,在我们上面的3个目录中任意一个;然后访问测试 http://localhost:8080/ 看结果!
|
|
|
+
|
|
|
+**关于网站图标说明**:
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+与其他静态资源一样,Spring Boot在配置的静态内容位置中查找 favicon.ico。如果存在这样的文件,它将自动用作应用程序的favicon。
|
|
|
+
|
|
|
+1、关闭SpringBoot默认图标
|
|
|
+
|
|
|
+```properties
|
|
|
+#关闭默认图标spring.mvc.favicon.enabled=false
|
|
|
+```
|
|
|
+
|
|
|
+2、自己放一个图标在静态资源目录下,我放在 public 目录下
|
|
|
+
|
|
|
+3、清除浏览器缓存!刷新网页,发现图标已经变成自己的了!
|
|
|
+
|
|
|
+
|
|
|
+
|