spring使用@Async注解导致循环依赖问题异常的排查记录
作者:我不是码农
引言
因为布控预警我用到了@async来实现异步操作,在本地跑的时候一直没有报错,可是当我打包到服务器启动的时候却报了一个BeanCurrentlyInCreationException
Bean with name 'xxx' has been injected into other beans [xxx2] in its raw version as part of a circular reference, but has eventually been wrapped. This means that said other beans do not use the final version of the bean. This is often the result of over-eager type matching - consider using 'getBeanNamesForType' with the 'allowEagerInit' flag turned off, for example.
出现循环依赖报错了,于是我看了一下代码,的确有循环依赖的情况(这个是不好的习惯不要学,这里我之前没注意到,后面可以改一下),但是我记得明明spring是能够处理使用@Autowired注解形成的循环的,并不会导致报错,而且我本地也一直复现不了,非常的奇怪。
常代码发生点 spring的doCreateBean方法
于是我写了一个spring循环依赖使用@Async的demo并调试,异常代码的发生点在spring的doCreateBean方法
if (earlySingletonExposure) { Object earlySingletonReference = getSingleton(beanName, false); if (earlySingletonReference != null) { if (exposedObject == bean) { exposedObject = earlySingletonReference; } else { //如果代理后的对象不等于原始对象就会抛异常了 }
@Component public class CircularTest { @Autowired CircularTest2 circularTest2; } @Component public class CircularTest2 { @Autowired CircularTest CircularTest; @Async public void async() { } }
开始我的代码是上面这样,spring初始化bean的顺序是先CircularTest再CircularTest2,每到初始化CircularTest2执行异常处代码的时候,直接earlySingletonReference返回的是null,所以一直复现不了,这时候我突然想到是不是spring初始化顺序的原因,因为之前也遇到过spring顺序不确定的问题,于是我改了一下代码
修改
@Component public class CircularTest { @Autowired CircularTest2 circularTest2; @Async public void async() { } } @Component public class CircularTest2 { @Autowired CircularTest CircularTest; }
我把@Async方法换了个位置,这次竟然真的就复现了该异常,所以看来我本地的和服务器上的虽然代码一致,但是最终跑起来的spring的bean加载顺序变成不一样了,因为spring容器载入bean的顺序是不确定的,框架本身也没有约定特定顺序的逻辑规范,不过利用@Ordered,@Dependon等等注解自己实现依赖顺序那是另外一回事了,嗯复现bug了,下面调试一下spring循环依赖使用@Async注解为啥会报错
以上就是spring使用@Async注解导致循环依赖问题异常的排查记录的详细内容,更多关于spring @Async循环依赖异常的资料请关注脚本之家其它相关文章!