SpringBoot 自动配置失效的解决方法
本文源自近期项目中遇到的问题, bug 总是出现在你自以为是的地方...
问题描述
下面是一个简单复现的代码片段,在你没有阅读完本文时,如果能做出正确的判断,那恭喜你可以节省阅读本文的时间了。
1、自动配置类:autotestconfiguration
@configuration @enableconfigurationproperties(testproperties.class) @conditionalonproperty(prefix = "test", name = "enable") public class autotestconfiguration { @bean @conditionalonmissingbean public testbean testbean(testproperties properties){ system.out.println("this is executed....."); return new testbean(); } }
2、配置类 testproperties
@configurationproperties(prefix = "test") public class testproperties { private boolean enable = true; public boolean isenable() { return enable; } public void setenable(boolean enable) { this.enable = enable; } }
这两个类都在 root package 下,可以保证能够正常被 spring 扫描到;那么问题是 testbean 会不会被正常创建?当然这里的结论是不会。
可能有的同学会说你的 testproperties 没有加 @configuration 注解,spring 不认识它,那真的是这样吗?很显然也不是。
在排查这个问题的过程中,也有遇到其他问题,也是之前没有遇到过的;即使 spring 源码我看过很多遍,但是仍然会有一些边边角角让你意想不到的地方;下面就针对这个问题,慢慢来揭开它的面纱。
@enableconfigurationproperties 注解行为
在之前的版本中,testproperties 是有被 @configuration 注解标注的
@configuration // 可以被 spring 扫描 @configurationproperties(prefix = "test") public class testproperties { private boolean enable = true; public boolean isenable() { return enable; } public void setenable(boolean enable) { this.enable = enable; } }
常规的思路是,当 testproperties 被扫描到之后,spring env 中就会有 test.enable=true 的 k-v 存在,当执行 autotestconfiguration 自动配置类刷新时,@conditionalonproperty(prefix = "test", name = "enable") 则会生效,进而 testbean 被正常创建。
但事实并非如此,下面是对于此问题的验证
配置有效,autotestconfiguration 未刷新
两个点:
- autotestconfiguration#testbean 执行会输出一个 log(用于判断 autotestconfiguration 是否正常刷新)
- 监听 applicationreadyevent 事件,拿 test.enable 值(用于判端配置是否正常加载,也就是 testproperties 是否被正常刷新)
代码如下:
@springbootapplication public class application implements applicationlistener<applicationreadyevent> { @autowired private applicationcontext applicationcontext; public static void main(string[] args) { springapplication.run(application.class, args); } @override public void onapplicationevent(applicationreadyevent event) { system.out.println(this.applicationcontext.getenvironment().getproperty("test.enable") + "------"); } }
执行得到的结果是 autotestconfiguration#testbean 没有被执行,但test.enable 为 true。
这里说明 testproperties 是有被刷新的,但是并没有对 @conditionalonproperty 起到作用,那么这里基本可以猜到是自动配置类上的 @conditionalonproperty 和 @enableconfigurationproperties 的作用顺序问题。
在验证顺序问题之前,我尝试在 application.properties 中增加如下配置,re run 项目:
test.enable=true
到这里我得到了另一个 bean 冲突的问题。
prefix-type
异常提示如下:
parameter 0 of method testbean in com.glmapper.bridge.boot.config.autotestconfiguration required a single bean, but 2 were found:
- testproperties: defined in file [/users/glmapper/documents/project/exception-guides/target/classes/com/glmapper/bridge/boot/config/testproperties.class]
- test-com.glmapper.bridge.boot.config.testproperties: defined in null
这里出现了 test-com.glmapper.bridge.boot.config.testproperties 这个 name 的 bean。我尝试在代码中去检查是否有显示给定这个 bean 名字,但是没有找到,那只有一种可能,就是这个是被 spring 自己创建的。
这个过程在 spring 刷新阶段非常靠前,在排查这个问题时,还是耽误了一些时间,最后还是把问题定位一致前置到 beandefinitions 初始化才找到。
这里是 @enableconfigurationproperties 注解的一个行为,依赖 enableconfigurationpropertiesregistrar,源码如下:
class enableconfigurationpropertiesregistrar implements importbeandefinitionregistrar { .getqualifiedattributename(enableconfigurationpropertiesregistrar.class, "methodvalidationexcludefilter"); @override public void registerbeandefinitions(annotationmetadata metadata, beandefinitionregistry registry) { registerinfrastructurebeans(registry); registermethodvalidationexcludefilter(registry); configurationpropertiesbeanregistrar beanregistrar = new configurationpropertiesbeanregistrar(registry); // to register gettypes(metadata).foreach(beanregistrar::register); }
通过代码比较容易看出,enableconfigurationpropertiesregistrar 会将目标 metadata 注册成 bean;继续 debug,找到了产生 prefix-type 格式 name 的 bean。
下面是 getname 的具体代码
private string getname(class<?> type, mergedannotation<configurationproperties> annotation) { // 拿 prefix string prefix = annotation.ispresent() ? annotation.getstring("prefix") : ""; // prefix + "-" + 类全限定名 return (stringutils.hastext(prefix) ? prefix + "-" + type.getname() : type.getname()); }
到这里我们先明确一个问题:
如果你使用 @enableconfigurationproperties 来开启配置类,那么就不要在配置类上使用@configuration 等能够被 spring scan 识别到的注解,以免在后续的使用中同一类型的 bean 多个实例
@conditionalonproperty
在回到配置不生效问题上来,这里在官方 issue 是有记录的:github.com/spring-proj…
不过这里还是通过分析代码来还原下问题产生的根本原因;这里主要从两个方面来分析:
- @conditionalonproperty match 值逻辑,需要明确在匹配 value 时,从哪些 propertysource 读取的。
- @conditionalonproperty match 失败和 bean 刷新的逻辑
@conditionalonproperty match 逻辑
首先是 @conditionalonproperty 在执行计算时,匹配 value 的值来源问题,通过 debug 代码很容易就得到了所有的 source 来源,如下图:
从 debug 看,本案例有 4 个来源(具体如上图),实际上从源码来看,source 涵盖了 spring env 所有来源:
[configurationpropertysourcespropertysource {name='configurationproperties'}, stubpropertysource {name='servletconfiginitparams'}, stubpropertysource {name='servletcontextinitparams'}, propertiespropertysource {name='systemproperties'}, originawaresystemenvironmentpropertysource {name='systemenvironment'}, randomvaluepropertysource {name='random'}, origintrackedmappropertysource {name='config resource 'class path resource [application.properties]' via location 'optional:classpath:/''}]
所以本文案例中不生效原因就是上面这些 propertysource 都没有 test.enable,也就是 testproperties 没被刷新,或者其在自动配置类之后才刷新。
@conditionalonproperty skip 逻辑
这里主要解释 @conditionalonpropert 和 bean 被刷新的逻辑关系,具体实现在 conditionevaluator 类中
public boolean shouldskip(@nullable annotatedtypemetadata metadata, @nullable configurationphase phase) { // 1、没有 conditional 注解,则扫描时不会跳过当前 bean // 2、遍历 conditions 进行判断是否满足 }
所以对于自动配置类上的注解,conditional 是作为当前类是否允许被刷新的前提,只有 conditional 条件满足,才会将当前的自动配置类加入到待刷新 bean 列表中去,如果 conditional 不满足,这个 bean 将直接被跳过,不会被放到 beandefinitonmap 中去,也就不会有后续的刷新动作。
@conditionalonproperty 作用时机在 beandefiniton 被创建之前,其执行时机要比 @enableconfigurationproperties 作用要早,这也就说明了,为什么 testproperties 中 test.enable=true, autotestconfiguration 也不会刷新的原因了。
总结
本文通过一个简单 case,对于项目中遇到的 springboot 配置失效导致 bean 未被刷新问题进行了回溯,总结如下:
conditional 相关注解对于自动配置类来说,作用时机较早,用于决定当前自动配置类是否允许被刷新
@enableconfigurationproperties enable 的类,会默认注册一个 bean,bean 名字格式为 prefix-type
到此这篇关于springboot 自动配置失效的解决方法的文章就介绍到这了,更多相关springboot 自动配置失效内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: 每天吃多少油比较好?哪些油算好油?
下一篇: LCD产业失去两大巨头:三星和LG退出