SpringBoot | 基础十四篇整理以及理解 | 便于查阅

SpringBoot 连载(一) : 从环境建置到打包上线(附视频):
https://mp.weixin.qq.com/s/3Fuo3QD27WOwPTd-9B2ztw
SpringBoot 连载(二) : 场景启动器分析(附视频)
https://mp.weixin.qq.com/s/y-omkM9ua2YJGU_6GueCFw
SpringBoot 连载(三) : 修改默认配置以及使用yml(附视频)
https://mp.weixin.qq.com/s/3hz7zncZAWFIpNUISHDmsg
SpringBoot 连载(四) : 占位符与利用Profile来快速切换环境(附视频)
https://mp.weixin.qq.com/s/LB6aMw-1Fk_WkBjFRVffsQ

1
profile快速切换运行环境:

SpringBoot 连载(五) : 配置文件的加载顺序&优先级(附视频)
https://mp.weixin.qq.com/s/O_89JzgJbIPoehiRXzPm3w

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
项目内部的优先级
SpringBoot启动会扫描以下位置的application.properties & application.yml文件作为SpringBoot的默认配置文件,所有位置的文件都会被加载,高优先级配置内容会覆盖低优先级配置内容,各个配置文件中的参数会形成互补;

优先级排序:

1:-file:./config/;

2:-file:./

3:-classpath:/config/;

4:-classpath:/

这个列表按照优先级排序,
也就是说,
src/main/resources/config下application.properties
覆盖src/main/resources下application.properties中相同的属性,

此外,如果你在相同优先级位置同时有application.properties和application.yml,
那么application.yml里面的属性就会覆盖application.properties里的属性

SpringBoot 连载(六) : 自动配置原理(附视频)
https://mp.weixin.qq.com/s/SFzKRiyzY0hM3f6owx75DA

1
2
3
4
5
6
7
8
9
10
通过SpringBootApplication往内翻
注解继承结构如下一层套一层:
@EnableAutoConfiguration;-->@Import({AutoConfigurationImportSelector.class})
* 重点就是这个类 AutoConfigurationImportSelector.class
* 程式会通过这个类里面的selectImports方法
* 扫描了一个文件叫:META-INF/spring.factories
* 程式会把所有jar下的这个文件都进行扫描.然后装配成properties对象,
* 然后从该对象中加载:EnableAutoConfiguration.class所对应的值.
* 然后把这些值加载到容器中去.这些值其他就是各种自动配置的组件类.
* 不同的组件负责不同功能的自动配置.

在这里插入图片描述
SpringBoot 连载(七) : 高性能日志记录(附视频)
https://mp.weixin.qq.com/s/aI19nBcYPskI3QmNWux51Q
SpringBoot 连载(八) : 静态文件与模板引擎(附视频)
https://mp.weixin.qq.com/s/4bgv7SDhSeQr0wsUbQz7rw
SpringBoot 连载(九) : MVC自动配置&扩展,Boot 国际化(附视频)
https://mp.weixin.qq.com/s/LmlIiq1TmQ28x6shFt7rwA
SpringBoot 连载(十) : 拦截器与Thymeleaf共用模块(附视频)
https://mp.weixin.qq.com/s/RfZIc-_t5e67UsY9uX9fFQ
SpringBoot 连载(十一) : Restful方式实现CRUD(附视频)
https://mp.weixin.qq.com/s/eSLMWgcf3YCbGmbSCSjGfg
SpringBoot 连载(十二) : 定制错误处理页面与消息(附视频)
https://mp.weixin.qq.com/s/6lUL-zl95wmusxrOHV7uaw
SpringBoot 连载(十三) : Servlet容器与三大组件(附视频)
https://mp.weixin.qq.com/s/4SRIUisK3tApAx8uVRoXZQ
SpringBoot 连载(十四) : SpringBoot项目模块化(结束篇)
https://mp.weixin.qq.com/s/S_BIWxSVMlsPr_wrVPb7YQ