深入浅析SpringBoot自动配置原理
springboot2.3.1版本源码
一、springboot启动的时候加载主配置类,通过@enableautoconfiguration注解开启了自动配置功能 。
二、@enableautoconfiguration作用:
1、 点击该注解进入可以发现,它利用autoconfigurationimportselector.class 选择器给springboot导入一些组件。导入哪些组件呢?可以点击选择器进入查看selectimports()方法的内容,该方法最终会返回一个configurations。
2、selectimports方法调用了getautoconfigurationentry()方法获取自动配置实体,在getautoconfigurationentry()方法中有一条代码
list<string> configurations = this.getcandidateconfigurations(annotationmetadata, attributes);
用于获取候选的配置
其中getcandidateconfigurations()方法有一条代码
list<string> configurations = springfactoriesloader.loadfactorynames(this.getspringfactoriesloaderfactoryclass(), this.getbeanclassloader());
从类路径下得到一个资源,loadfactorynames()方法中→loadspringfactories()方法→classloader.getresources("meta-inf/spring.factories"),扫描所有jar包类路径下的meta-inf/spring.factories的文件
loadspringfactories()方法通过如下代码:
enumeration<url>urls=classloader!=null?classloader.getresources("meta-inf/spring.factories")
得到meta-inf/spring.factories文件的url,然后把每一个url遍历,最终通过propertiesproperties=propertiesloaderutils.loadproperties(resource);把这些文件封装成一个properties对象,然后从properties对象中获取一些值,把每一个url获取到的值添加到最终要返回的结果中。而这些返回结果就是我们要交给容器中的所有组件。其中factorytypename指的就是传过来的class的类名,而传过来的class是从autoconfigurationimportselector类的getcandidateconfigurations()方法的this.getspringfactoriesloaderfactoryclass()中得到的,其返回值是enableautoconfiguration.class意思就是从properties中获取到enableautoconfiguration.class类(类名)对应的值,然后把他们添加在容器中。
在spring-boot-autoconfigure-2.3.1.release.jar!\meta-inf\spring.factories文件中,我们可以找到enableautoconfiguration的值
所以相当于把enableautoconfiguration值里面的这些组件加到了容器中。
简而言之就是:将类路径下\meta-inf\spring.factories里面配置的所有enableautoconfiguration的值加入到了容器中。所以最终容器中会添加很多的类,这些就是自动配置之源,自动配置的开始 。 每一个xxxautoconfiguration类(自动配置类)都是容器中的一个组件,都加入到容器中,用他们来做自动配置。
三、每一个自动配置类进行自动配置功能
以httpencodingautoconfiguration(http编码自动配置)自动配置类为例解释自动配置原理
@configuration( //这是一个配置类,就类似配置文件一样,也可以给容器中添加组件 proxybeanmethods = false ) @enableconfigurationproperties({serverproperties.class}) //启用指定类(serverproperties.class)的enableconfigurationproperties功能; 将配置文件中对应的值和serverproperties类绑定起来,并把serverproperties加入到ioc容器中。 @conditionalonwebapplication( //底层使用的是spring底层的conditional注解,根据不同的条件,如果满足指定的条件, 整个配置类里面的配置才会生效。conditionalonwebapplication:判断当前应用是否是web应用,如果是,当前配置类生效。 type = type.servlet ) @conditionalonclass({characterencodingfilter.class}) //判断当前项目有没有characterencodingfilter这个类,(springmvc中进行乱码解决的过滤器),如果有,当前配置类生效。 @conditionalonproperty( //判断配置文件中是否存在某个配置,server.servlet.encoding.enabled, matchifmissing = true表示,如果不存在判断也是成立的。(即使配置文件中不配置server.servlet.encoding.enabled,也是默认生效的) prefix = "server.servlet.encoding", value = {"enabled"}, matchifmissing = true ) public class httpencodingautoconfiguration { private final encoding properties;//properties属性已经和springboot的配置文件映射了。 public httpencodingautoconfiguration(serverproperties properties) { //只有一个有参构造器的情况下,参数的值就会从容器中拿 this.properties = properties.getservlet().getencoding(); } @bean//给容器中添加一个组件,这个组件的某些值需要从properties中获取。 @conditionalonmissingbean public characterencodingfilter characterencodingfilter() { characterencodingfilter filter = new orderedcharacterencodingfilter(); filter.setencoding(this.properties.getcharset().name()); filter.setforcerequestencoding(this.properties.shouldforce(org.springframework.boot.web.servlet.server.encoding.type.request)); //需要使用什么编码就从encoding类的properties属性中获取 filter.setforceresponseencoding(this.properties.shouldforce(org.springframework.boot.web.servlet.server.encoding.type.response)); return filter; }
简而言之:xxxautoconfiguration自动配置类就是根据当前不同条件判断,决定这个配置类是否生效。
那如果这些判断都成功了,配置类生效了,接下来怎么办呢?
一旦这个配置类生效, 接下来这个配置类会通过@bean注解给容器中添加各种组件,这些组件的属性是从对应的xxxproperties类中获取的,而这个类里面的每一个属性又是和配置文件绑定的
serverproperties.class类
@configurationproperties(//从配置文件中获取指定的值,和serverproperties类的属性进行绑定 prefix = "server", ignoreunknownfields = true ) public class serverproperties {
所以说,我们在配置文件中应该配置什么,就按照她的旨意,根据 prefix = "server"我们可以知道,在配置文件中可以配server这个属性。而server属性里面能配置什么值,就看serverproperties.class类中有哪些属性。
serverproperties中有的这些属性,都可以在配置文件中配置。
例如:server.port server.address
四、由此我们可以知道,所有能在配置文件中配置的属性都是在xxxproperties类中封装着,
配置文件能配置就可以参照某一个功能对应的这个xxxproperties类。
精髓:
1)、springboot启动会加载大量的自动配置类xxxautoconfiguration
2)、我们看我们需要的功能有没有springboot写好的自动配置类
3)、我们再来看这些自动配置类到底配置了哪些组件;(只要我们要用的组件有,我们就不需要再来配置了)如果没有,我们就需要自己写配置类。
4)、给容器中自动配置类添加组件的时候,会从xxxpropertiess类中获取某些属性,我们就可以在配置文件中指定这些属性的值
自动配置中最重要的两种类:
xxxautoconfiguration:自动配置类给容器中添加组件
xxxproperties:封装配置文件中相关的属性
到此这篇关于springboot自动配置原理的文章就介绍到这了,更多相关springboot自动配置原理内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
推荐阅读
-
如何通过一张图搞懂springBoot自动注入原理
-
springBoot 依赖管理 自动配置,容器功能 ,以及配置常用注解详解
-
@EnableAutoConfiguration自动配置原理分析
-
【springboot】之自动配置原理
-
SpringBoot自动装配原理解析
-
JAVA SpringBoot 项目打成jar包供第三方引用自动配置(Spring发现)解决方案
-
Springboot自动配置和自定义自动配置
-
Springboot 系列(三)Spring Boot 自动配置
-
Spring Boot自动配置原理与实践(一)
-
深入springboot原理——一步步分析springboot启动机制(starter机制)