我正在尝试在StaticApplicationContext中自动装配一个bean但是虽然我可以插入一个bean并成功检索它,但我无法在另一个bean中自动装配它。下面是一个简单的例子来解释我的意思。
在此示例中,第一个断言成功,第二个断言失败。请注意,如果我注释掉此方法的行,而是取消注释使用AnnotationConfigApplicationContext的方法#2的行,则自动装配将起作用。但是,我想使用StaticApplicationContext方法使其工作。
@Test
public void testAutowire() {
//context configuration approach #1
StaticApplicationContext context = new StaticApplicationContext();
context.registerSingleton("child", Child.class);
//context configuration approach #2
//AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(Child.class);
Parent parent = new Parent();
context.getAutowireCapableBeanFactory().autowireBean(parent);
//this is successful
Assert.notNull(context.getBean(Child.class), "no bean found");
//this works only with AnnotationConfigApplicationContext and not with StaticApplicationContext
Assert.notNull(parent.child, "no child autowired");
}
public static class Parent {
@Autowired
Child child;
public Parent() {
}
}
public static class Child {
public Child() {
}
}
问题所在的任何想法?
答案 0 :(得分:8)
AnnotationConfigApplicationContext
在内部注册AutowiredAnnotationBeanPostProcessor
bean来处理@Autowired
注释。 StaticApplicationContext
没有。
您可以自己添加
context.registerSingleton("someName", AutowiredAnnotationBeanPostProcessor.class);
但您需要refresh
ApplicationContext
context.refresh();