Spring在使用JUnit的单元测试中无法自动装配
我使用JUnit测试以下DAO:
@Repositorypublic class MyDao {
@Autowired
private SessionFactory sessionFactory;
// Other stuff here
}
如你所见,sessionFactory是使用Spring自动接线的。当我运行测试时,sessionFactory保持为空,并且出现空指针异常。
这是Spring中的sessionFactory配置:
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="configLocation">
<value>classpath:hibernate.cfg.xml</value>
</property>
<property name="configurationClass">
<value>org.hibernate.cfg.AnnotationConfiguration</value>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">${jdbc.dialect}</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
</bean>
怎么了?我如何也可以为单元测试启用自动装配?
更新:我不知道这是否是运行JUnit测试的唯一方法,但是请注意,我正在Eclipse中运行,右键单击测试文件,然后选择“运行方式”->“ JUnit测试”
回答:
在根单元测试类中添加以下内容:
@RunWith( SpringJUnit4ClassRunner.class )@ContextConfiguration
这将在你的默认路径中使用XML。如果需要指定非默认路径,则可以为ContextConfiguration批注提供locations属性。
以上是 Spring在使用JUnit的单元测试中无法自动装配 的全部内容, 来源链接: utcz.com/qa/420445.html