我遇到了一个问题,这个问题只能解释为我对Spring的IoC容器设施和上下文设置缺乏了解,所以我会要求澄清一下。
仅供参考,我正在维护的应用程序具有以下一堆技术:
我追溯(原文如此!)为应用程序编写JUnit测试,令我感到惊讶的是,我无法通过使用setter注入将bean注入测试类而不采用@Autowire表示法。
让我提供一个示例和附带的配置文件。
测试类TypeTest
非常简单:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
public class TypeTest {
@Autowired
private IType type;
@Test
public void testFindAllTypes() {
List<Type> result;
try {
result = type.findAlltTypes();
assertNotNull(result);
} catch (Exception e) {
e.printStackTrace();
fail("Exception caught with " + e.getMessage());
}
}
}
其上下文在TestStackOverflowExample-context.xml
:
<context:property-placeholder location="classpath:testContext.properties" />
<context:annotation-config />
<tx:annotation-driven />
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="driverClassName" value="${db.connection.driver.class}" />
<property name="url" value="${db.connection.url}" />
<property name="username" value="${db.connection.username}" />
<property name="password" value="${db.connection.password}" />
</bean>
<bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>
<bean id="beanDAO" class="com.example.BeanDAOImpl">
<property name="ds" ref="dataSource"></property>
<property name="beanDAOTwo" ref="beanDAOTwo"></property>
</bean>
<bean id="beanDAOTwo" class="com.example.BeanDAOTwoImpl">
<property name="ds" ref="dataSource"></property>
</bean>
<bean id="type" class="com.example.TypeImpl">
<property name="beanDAO" ref="beanDAO"></property>
</bean>
TestContext.properties
位于类路径中,仅包含数据源所需的特定于数据库的数据。
这就像魅力一样,但我的问题是 - 当我尝试手动连接bean并执行setter注入时,为什么它不起作用:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
public class TypeTest {
private IType type;
public IType getType () {
return type;
}
public void setType(IType type) {
this.type= type;
}
@Test
public void testFindAllTypes(){
//snip, snip...
}
}
我在这里缺少什么?配置的哪一部分在这里有误?当我尝试通过setter手动注入bean时,测试失败,因为这部分
result = type.findAlltTypes();
在运行时被解析为null。当然,我参考了Spring参考手册并尝试了各种XML配置组合;我可以得出的结论是,Spring无法注入bean,因为它无法正确地取消引用Spring Test Context引用但是使用@Autowired这种情况“自动地”发生了,我真的不明白为什么会这样,因为{{1的JavaDoc注释及其Autowired
类没有提到这一点。
另外值得补充的是PostProcessor
仅在此处应用于应用程序。在其他地方只执行手动布线,所以这也带来了问题 - 为什么它在那里而不是这里,在我的测试中?我缺少DI配置的哪一部分? @Autowired
如何获得Spring Context的引用?
编辑: 我也试过了,但结果相同:
@Autowired
也许是其他任何想法?
EDIT2:
我已经找到了一种方法,而无需编写自己的@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
public class TypeTest implements ApplicationContextAware{
private IType type;
private ApplicationContext ctx;
public TypeTest(){
super();
ctx = new FileSystemXmlApplicationContext("/TypeTest-context.xml");
ctx.getBean("type");
}
public IType getType () {
return type;
}
public void setType(IType type) {
this.type= type;
}
@Test
public void testFindAllTypes(){
//snip, snip...
}
}
或TestContextListener
。令人惊讶的是,事实证明我在上一次编辑时走在了正确的轨道上:
1)基于构造函数的上下文解析:
BeanPostProcessor
2)通过实现ApplicationContextAware接口:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
public class TypeTest{
private IType type;
private ApplicationContext ctx;
public TypeTest(){
super();
ctx = new FileSystemXmlApplicationContext("/TypeTest-context.xml");
type = ctx.getBean("type");
}
public IType getType () {
return type;
}
public void setType(IType type) {
this.type= type;
}
@Test
public void testFindAllTypes(){
//snip, snip...
}
}
这两种方法都恰当地实例化了bean。
答案 0 :(得分:5)
如果您查看org.springframework.test.context.support.DependencyInjectionTestExecutionListener
的来源,您会看到以下方法(为了清晰起见而进行了格式化和评论):
protected void injectDependencies(final TestContext testContext)
throws Exception {
Object bean = testContext.getTestInstance();
AutowireCapableBeanFactory beanFactory = testContext.getApplicationContext()
.getAutowireCapableBeanFactory();
beanFactory.autowireBeanProperties(bean,
AutowireCapableBeanFactory.AUTOWIRE_NO,
// no autowiring!!!!!!!!
false
);
beanFactory.initializeBean(bean, testContext.getTestClass().getName());
// but here, bean post processors are run
testContext.removeAttribute(REINJECT_DEPENDENCIES_ATTRIBUTE);
}
因此测试对象是没有自动布线的bean。但是,@AutoWired
,@Resource
等不使用自动装配机制,而是使用BeanPostProcessor
。因此,当且仅当使用注释时(或者如果您注册了其他BeanPostProcessor
注释),依赖项将被注入。
(上面的代码来自Spring 3.0.x,但我打赌它在2.5.x中是相同的)