一、bean的创建顺序是由什么决定的
bean的创建顺序是由bean的注册顺序决定的。
# 第一步:
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(MySpringConfig.class);# 第二步:
refresh();# 第三步:
finishBeanFactoryInitialization(beanFactory);# 第四步:
// Instantiate all remaining (non-lazy-init) singletons.
beanFactory.preInstantiateSingletons();# 第五步: