Springboot自动加载配置的原理解析
1、springboot自动配置的原理初探
以下注解都在springboot的自动化配置包中:spring-boot-autoconfigure。读者朋友可以跟着一下步骤走一遍,应该对自动配置就有一定的认知了。
1.springboot程序的入口是在启动类,该类有个关键注解springbootapplication
@target(elementtype.type) @retention(retentionpolicy.runtime) @documented @inherited @springbootconfiguration @enableautoconfiguration @componentscan(excludefilters = { @filter(type = filtertype.custom, classes = typeexcludefilter.class), @filter(type = filtertype.custom, classes = autoconfigurationexcludefilter.class) }) public @interface springbootapplication { //略…… }
2.打开springbootapplication注解,上面有个关键注解enableautoconfiguration
@target(elementtype.type) @retention(retentionpolicy.runtime) @documented @inherited @autoconfigurationpackage @import(autoconfigurationimportselector.class) public @interface enableautoconfiguration { //…… }
3.enableautoconfiguration上有个@import(autoconfigurationimportselector.class),注意autoconfigurationimportselector,
@import作用创建一个autoconfigurationimportselector的bean对象,并且加入ioc容器
//org.springframework.boot.autoconfigure.autoconfigurationimportselector //此处只贴了关键方法 protected list<string> getcandidateconfigurations(annotationmetadata metadata, annotationattributes attributes) { list<string> configurations = springfactoriesloader.loadfactorynames(getspringfactoriesloaderfactoryclass(), 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; }
4.autoconfigurationimportselector类中的getcandidateconfigurations方法代码如上,其调用了springfactoriesloader的loadfactorynames方法,来获取
configurations,此configurations列表其实就是要被自动花配置的类。springfactoriesloader的两个重要方法如下:
//org.springframework.core.io.support.springfactoriesloader //只贴了两个关键方法 public static final string factories_resource_location = "meta-inf/spring.factories"; //此方法返回的是即将要被自动化配置的类的全限定类名,是从meta-inf/spring.factories配置的,配置文件中有个org.springframework.boot.autoconfigure.enableautoconfiguration 其后面可配置多个想被自动花配置的类 public static list<string> loadfactorynames(class<?> factorytype, @nullab等le classloader classloader) { string factorytypename = factorytype.getname(); return loadspringfactories(classloader).getordefault(factorytypename, collections.emptylist()); } private static map<string, list<string>> loadspringfactories(@nullable classloader classloader) { multivaluemap<string, string> result = cache.get(classloader); if (result != null) { return result; } try { enumeration<url> urls = (classloader != null ? classloader.getresources(factories_resource_location) : classloader.getsystemresources(factories_resource_location));//meta-inf/spring.factories result = new linkedmultivaluemap<>(); while (urls.hasmoreelements()) { url url = urls.nextelement(); urlresource resource = new urlresource(url); properties properties = propertiesloaderutils.loadproperties(resource); for (map.entry<?, ?> entry : properties.entryset()) { string factorytypename = ((string) entry.getkey()).trim(); for (string factoryimplementationname : stringutils.commadelimitedlisttostringarray((string) entry.getvalue())) { result.add(factorytypename, factoryimplementationname.trim()); } } } cache.put(classloader, result); return result; } catch (ioexception ex) { throw new illegalargumentexception("unable to load factories from location [" + factories_resource_location + "]", ex); } }
5.举例分析,我们在spring.factories中可以看到org.springframework.boot.autoconfigure.enableautoconfiguration后有一个org.springframework.boot.autoconfigure.data.redis.redisautoconfiguration,说明springboot希望redis能够自动化配置。接着我们打开redisautoconfiguration源码查看。此处我故意没复制源码,用的截图,可以看到截图直接有报错,编译错误,错误的原因是我们还没添加spring-boot-starter-data-redis的依赖。**这里有个问题,为什么明明代码都报错,cannot resolve symbol xxx(未找到类),但是我们的项目依然可以启动?不信你建立一个简单的springboot项目,只添加web依赖,手动打开redisautoconfiguration,发现是报红错的,但是你启动项目,发现没任何问题,why??**这个问题后面再解答,先接着看自动配置的问题。
6.先把redisautoconfiguration源码复制出来方便我写注释,上面用截图主要是让大家看到报错
@configuration(proxybeanmethods = false) @conditionalonclass(redisoperations.class) @enableconfigurationproperties(redisproperties.class) @import({ lettuceconnectionconfiguration.class, jedisconnectionconfiguration.class }) public class redisautoconfiguration { @bean @conditionalonmissingbean(name = "redistemplate") public redistemplate<object, object> redistemplate(redisconnectionfactory redisconnectionfactory) throws unknownhostexception { redistemplate<object, object> template = new redistemplate<>(); template.setconnectionfactory(redisconnectionfactory); return template; } @bean @conditionalonmissingbean public stringredistemplate stringredistemplate(redisconnectionfactory redisconnectionfactory) throws unknownhostexception { stringredistemplate template = new stringredistemplate(); template.setconnectionfactory(redisconnectionfactory); return template; } }
看源码可知redisautoconfiguration上有一个configuration和conditionalonclass注解,先分析这两个。首先configuration注解,代表这是个java config配置类,和spring配置bean的xml文件是一个作用,都是用来实例化bean的,**但是注意还有个@conditionalonclass(redisoperations.class)注解,这个注解的作用是当redisoperations.class这个类被找到后才会生效,如果没找到此类,那么整个redisautoconfiguration就不会生效。**所以当我们引入了redis的依赖,springboot首先会通过redisautoconfiguration的方法redistemplate给我们设置一个默认的redis配置,当然这个方法上也有个注解@conditionalonmissingbean(name = "redistemplate"),就是当我们没有手动配redistemplate这个bean它才会调用这个默认的方法,注入一个redistemplate到ioc容器,所以一般情况我们都是手动配置这个redistemplate,方便我们设置序列化器,如下:
@configuration public class redisconfig { /** * 设置 redistemplate 的序列化设置 * * @param redisconnectionfactory * @return */ @bean public redistemplate<string, object> redistemplate(redisconnectionfactory redisconnectionfactory) { // 1.创建 redistemplate 模版 redistemplate<string, object> template = new redistemplate<>(); // 2.关联 redisconnectionfactory template.setconnectionfactory(redisconnectionfactory); // 3.创建 序列化类 jackson2jsonredisserializer jackson2jsonredisserializer = new jackson2jsonredisserializer(object.class); objectmapper om = new objectmapper(); // 4.设置可见度 om.setvisibility(propertyaccessor.all, jsonautodetect.visibility.any); // 5.启动默认的类型 om.enabledefaulttyping(objectmapper.defaulttyping.non_final); // 6.序列化类,对象映射设置 jackson2jsonredisserializer.setobjectmapper(om); // 7.设置 value 的转化格式和 key 的转化格式 template.setvalueserializer(jackson2jsonredisserializer); template.setkeyserializer(new stringredisserializer()); template.afterpropertiesset(); return template; } }
redisautoconfiguration上还有一下两个注解,作用是从配置文件读取redis相关的信息,ip、端口、密码等
@enableconfigurationproperties(redisproperties.class) @import({ lettuceconnectionconfiguration.class, jedisconnectionconfiguration.class })
2. 补充扩展(解释为什么引用的包都报红错了,项目还能启动)
所有的@condition注解(包括衍生的)其实都对应一个具体的实现,这个实现类里面有个判断方法叫做matches,返回的是个布尔类型判断值。
打开conditionalonclass源码如下,其conditional注解传递的是个onclasscondition.class,这就其对应的判断类,也就是说,当我们使用conditionalonclass注解时,其实际上调用的是onclasscondition来判断的
@target({ elementtype.type, elementtype.method }) @retention(retentionpolicy.runtime) @documented @conditional(onclasscondition.class) public @interface conditionalonclass { /** * the classes that must be present. since this annotation is parsed by loading class * bytecode, it is safe to specify classes here that may ultimately not be on the * classpath, only if this annotation is directly on the affected component and * <b>not</b> if this annotation is used as a composed, meta-annotation. in order to * use this annotation as a meta-annotation, only use the {@link #name} attribute. * @return the classes that must be present */ class<?>[] value() default {}; /** * the classes names that must be present. * @return the class names that must be present. */ string[] name() default {}; }
conditionalonclass类图如下,它继承了condition接口
打开condition接口如下,查看注释,注释中有说明 **条件判断是在bean定义即将注册到容器之前进行的,**看过springioc源码的同学应该知道,spring创建一个对象的过程是当服务启动后,先读取xml配置文件(或者通过注解),根据配置文件先定义一个beandefinition,然后把这个bean给放到容器(在spring中实际就是一个map),然后在根据bean定义,通过反射创建真正的对象。反射会触发类加载,当condition条件不满足时,根据如下注释可知,bean定义后续都被拦截了,连注册都不行,所以自然就不可能通过反射创建对象,不反射自然不会触发类加载,不触发类加载那么redisautoconfiguration当然啊不会加载,它不加载,那么即使它里面引用了一个不存在的类也不会有啥问题。
上面说的很绕,表达的不是很好,要想看懂以上部分需要掌握两方面的知识:
- 类加载原理,推荐看周志明老师的《深入理解jvm虚拟机》
- spring ioc容器创建bean的原理,推荐《spring揭秘》,详细看看ioc部分
3、又一个问题
spring-boot-autoconfigure.jar这个包中的redisautoconfiguration都报红色错误了,那么spring官方是怎么打包出来spring-boot-autoconfigure.jar的??怎么给我们提供了一个报错的包呢
//todo
总结
到此这篇关于springboot自动加载配置原理的文章就介绍到这了,更多相关springboot自动加载配置原理内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: 剪映怎么做边缘发光效果? 剪映文字场景添加发光效果的技巧
下一篇: $.ajax()方法详解
推荐阅读
-
springboot介绍项目(springboot自动配置原理)
-
springboot介绍项目(springboot自动配置原理)
-
springboot2.0.3源码篇 - 自动配置的实现,发现也不是那么复杂
-
springboot介绍项目(springboot自动配置原理)
-
解析php类的注册与自动加载
-
spring5 源码深度解析----- 被面试官给虐懵了,竟然是因为我不懂@Configuration配置类及@Bean的原理
-
【springboot】之自动配置原理
-
SpringBoot自动装配原理解析
-
SpringBoot整合log4j日志与HashMap的底层原理解析
-
SpringBoot加载子模块配置文件的方法