spring bean的循环引用

Posted yongan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring bean的循环引用相关的知识,希望对你有一定的参考价值。

看过一次spring公开课,记录一下bean的循环引用问题。

问题:

public class IndexService

  @Autowired

  IndexDao indexDao;

public class IndexDao

  @Autowired

  IndexService indexService;

以上的实例中IndexService依赖IndexDao,IndexDao中依赖IndexService。

spring在bean的实例化过程:

  先去创建IndexDao bean,

1.创建IndexDao实例,此时还没有IndexDao bean产生。

2.去配置IndexDao对象的属性,这个属性就是IndexService,在这个配置的过程中会先把自己(IndexDao)对象放到singleFactory中;

3.然后去查找IndexService bean去填充,发现单例池(专门存放bean)中没有,然后去singleFactory中去找,还是没有。

4.创建IndexService实例,此时还没有IndexService bean。

5.去配置IndexService对象的属性,这个属性就是IndexDao,在这个配置的过程中会先把自己(IndexDao)对象放到singleFactory中;

6.然后去查找IndexDao bean去填充,发现单例池中没有,然后去singleFactory中去找,发现有了。

7.然后把属性填充到IndexService中。

8.经过4,5,6,7后已经有了IndexService,并且此时属性IndexDao有值了,然后通过步骤3再将这个IndexService注入到IndexDao

9.然后继续完成IndexDao 后续的bean的初始化。

以上是关于spring bean的循环引用的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot + Quartz:“请求的 bean 当前正在创建中:是不是存在无法解析的循环引用?”

Spring Boot UnsatisfiedDependencyException 创建名称为无法解析的循环引用的 bean 时出错

当我尝试使用 Spring Boot 为 SessionFactory 创建 bean 时无法解析的循环引用

Spring Boot创建动态数据源:当前正在创建请求的bean:是否存在无法解析的循环引用?

Spring — 循环依赖

Spring — 循环依赖