springboot自动配置源码解读以及jdbc和redis配置原理小点

Posted Fire king

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot自动配置源码解读以及jdbc和redis配置原理小点相关的知识,希望对你有一定的参考价值。

springboot自动配置源码解读以及jdbc和redis配置原理小点

1.springboot自动配置源码解读:

1.1.扫基本包:

在这里插入图片描述
在这里插入图片描述

2.2.自动配置源码解读:

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
分析:Enumeration<URL> urls = classLoader != null ? classLoader.getResources(path) : ClassLoader.getSystemResources(path);获取另外类路径classpath下的"META-INF/spring-autoconfigure-metadata.properties",至于什么是类路径,简单来说就是项目打包后WEB-INF下的classes和lib,即WEB-INF/classes/和WEB-INF/lib/都是类路径,且后者的优先级比前者高,WEB-INF/classes/放的是项目源码和resources下的文件,而WEB-INF/lib/放的是第三方,即引入的外来的jar包,因此说META-INF/spring-autoconfigure-metadata.properties指的是
在这里插入图片描述
再验证其正确性:
文件中条数与上上个图的properties属性条数一样。
在这里插入图片描述

在这里插入图片描述
方法:
在这里插入图片描述
此步debugger得到的参数值:metadata中annotationTypes:
org.springframework.boot.autoconfigure.SpringBootApplication
在这里插入图片描述

其中的getSpringFactoriesLoaderFactoryClass()返回的是EnableAutoConfiguration.class。demo如下:

  protected Class<?> getSpringFactoriesLoaderFactoryClass() {
        return EnableAutoConfiguration.class;
    }

因此可以将源码List<String> configurations = SpringFactoriesLoader.loadFactoryNames(this.getSpringFactoriesLoaderFactoryClass(), this.getBeanClassLoader());转化为List<String> configurations = SpringFactoriesLoader.loadFactoryNames(EnableAutoConfiguration.class, this.getBeanClassLoader());
分析:获取EnableAutoConfiguration.class标注的configurations配置类,那么这些配置类从哪里来呢?

在这里插入图片描述
一直Step Into直到进入 loadFactoryNames方法:得到重要参数
factoryTypeName:org.springframework.boot.autoconfigure.EnableAutoConfiguration
在这里插入图片描述
在这里插入图片描述
因此(List)loadSpringFactories(classLoader).getOrDefault(factoryTypeName, Collections.emptyList());可转换为(List)loadSpringFactories(classLoader).getOrDefault(org.springframework.boot.autoconfigure.EnableAutoConfiguration, Collections.emptyList());
接着进入同类的(List)loadSpringFactories(classLoader)方法,该方法返回
分析到这里先找一下META-INF/spring.factories究竟在哪些依赖包中?
在这里插入图片描述
在这里插入图片描述
第一次遍历:
在这里插入图片描述
在这里插入图片描述

jar:file:/D:/IDEA/maven/IdeaMaven/repository/org/springframework/boot/spring-boot/2.2.0.RELEASE/spring-boot-2.2.0.RELEASE.jar!/META-INF/spring.factories

在这里插入图片描述
第二次遍历:
在这里插入图片描述
在这里插入图片描述

jar:file:/D:/IDEA/maven/IdeaMaven/repository/org/springframework/boot/spring-boot-autoconfigure/2.2.0.RELEASE/spring-boot-autoconfigure-2.2.0.RELEASE.jar!/META-INF/spring.factories

第三次遍历:
在这里插入图片描述
在这里插入图片描述

jar:file:/D:/IDEA/maven/IdeaMaven/repository/org/springframework/spring-beans/5.2.0.RELEASE/spring-beans-5.2.0.RELEASE.jar!/META-INF/spring.factories

三个jar包配置文件总共配置类条数:
在这里插入图片描述
分析:以其中一条key为例
在这里插入图片描述
那么,何来10条呢?
在这里插入图片描述
根据上图org.springframework.boot.autoconfigure.BackgroundPreinitializer可能是来自jar:file:/D:/IDEA/maven/IdeaMaven/repository/org/springframework/boot/spring-boot-autoconfigure/2.2.0.RELEASE/spring-boot-autoconfigure-2.2.0.RELEASE.jar!/META-INF/spring.factories中的一条key中的值,验证如下:
在这里插入图片描述
两个jar包中value:org.springframework.boot.autoconfigure.BackgroundPreinitializer值相同的key:org.springframework.context.ApplicationListener也相同。

最后,通过return result; 返回三个META-INF/spring.factories文件中总配置类数目返回数组给 方法(List)loadSpringFactories(classLoader) ,方法(List)loadSpringFactories(classLoader)调用getOrDefault(factoryTypeName, Collections.emptyList());getOrDefault(org.springframework.boot.autoconfigure.EnableAutoConfiguration, Collections.emptyList()); 获取标有EnableAutoConfiguration注解的配置类(@EnableAutoConfiguration),有124个 , 最后return (List)loadSpringFactories(classLoader).getOrDefault(factoryTypeName, Collections.emptyList());返回三个META-INF/spring.factories文件中标有EnableAutoConfiguration注解的类返回数组给SpringFactoriesLoader.loadFactoryNames(this.getSpringFactoriesLoaderFactoryClass(), this.getBeanClassLoader());
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

configurations = this.removeDuplicates(configurations);去重后仍剩下124个。

在这里插入图片描述

进入configurations = this.filter(configurations, autoConfigurationMetadata);根据autoConfigurationMetadata中488条 properties即jar:file:/D:/IDEA/maven/IdeaMaven/repository/org/springframework/boot/spring-boot-autoconfigure/2.2.0.RELEASE/spring-boot-autoconfigure-2.2.0.RELEASE.jar!/META-INF/spring.factories文件中每个标注有EnableAutoConfiguration注解的配置类生效必须的类(每个每个标注有EnableAutoConfiguration注解的自动配置类上面的@ConditionOn),去过滤掉没有引入相关依赖的自动配置类,最终结果如下:只剩下22个生效的自动配置类
在这里插入图片描述
488条properties
在这里插入图片描述

2.jdbc:

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

spring:
  datasource:
    driver-class-name: com.mysql.jdbc.Driver
    username: root
    password: 123456
    url: jdbc:mysql://localhost:3306/springBoot?characterEncoding=utf-8

2.视图解析器:
@ConditionalOnClass 是Springboot实现自动配置的重要支撑之一。其用途是判断当前classpath下是否存在指定类,若是则将当前的配置装载入spring容器
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

spring.mvc.view.prefix=/
spring.mvc.view.suffix=.jsp

3.redis:

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述

# REDIS (RedisProperties)
# Redis数据库索引(默认为0)
spring.redis.database=0
# Redis服务器地址
spring.redis.host=localhost
# Redis服务器连接端口
spring.redis.port=6379
# Redis服务器连接密码(默认为空)
spring.redis.password=
# 连接池最大连接数(使用负值表示没有限制)
spring.redis.pool.max-active=8
# 连接池最大阻塞等待时间(使用负值表示没有限制)
spring.redis.pool.max-wait=-1
# 连接池中的最大空闲连接
spring.redis.pool.max-idle=8
# 连接池中的最小空闲连接
spring.redis.pool.min-idle=0
# 连接超时时间(毫秒)
spring.redis.timeout=0

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

以上是关于springboot自动配置源码解读以及jdbc和redis配置原理小点的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot 核心源码解读

021-springboot源码解读-自动配置三部曲01创建属于自己的spring boot autofigure

SpringBoot源码解读系列二——依赖配置

源码级别解读 mybatis 插件

源码级别解读Mybatis插件

Springboot下的RabbitMQ消息监听源码解读