我们使用@Configuration类来进行基于
Java的Spring配置.我正在尝试设置AnnotationConfigApplicationContext的层次结构.
它似乎工作.因为我可以从父上下文中自动将bean作为从其中一个子上下文创建的bean的成员.
但是我没有管理从父上下文到@Configuration类文件的自动装配bean,这非常方便.它们都是空的.
// parent context config @Configuration public class ParentContextConfig{ @Bean parentBeanOne... @Bean parentBeanTwo... }
// child context config @Configuration public class ChildContextConfig{ @Autowired parentBeanOne @Bean childBeanOne... }
// a sample bean @Component public class ChildBeanOne{ @Autowired parentBeanTwo }
在这个示例中,我得到的是parentBeanTwo正确创建,而parentBeanOne没有自动装配(null)到配置文件.
我错过了什么?
解决方法
我认为Spring希望您使用标准的Java层次结构规则来建立配置对象的父子关系.也就是说,让子配置类扩展父配置类.