Spring集成测试 - 配置中的事务声明似乎打破了测试

时间:2012-04-09 19:20:24

标签: java spring hibernate integration-testing spring-test

我正在使用Spring MVC + Hibernate + MySQL“Hello World”应用程序,我正在尝试使用jUnit在Spring MVC控制器上运行以下集成测试。

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration({"file:src/main/webapp/WEB-INF/springapp-servlet.xml"})
public class InventoryControllerIT
{
    @Autowired
    private InventoryController controller;

    @Test
    public void handleRequest_anyRequest_returnsSuccessfully() throws Exception
    {       
        ModelAndView modelAndView = this.controller.handleRequest(null, null);
    }
}

但是,每次我这样做时都会遇到以下异常:

org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [springapp.web.InventoryController] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency.

以前我没有实现任何真正的数据访问并且测试通过正常,但是现在我已经添加了我的DAO的Hibernate实现以及spring事务管理我得到了这个错误。以下是我的applet上下文配置xml的相关部分:

    <?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
                           http://www.springframework.org/schema/beans/spring-beans.xsd
                           http://www.springframework.org/schema/tx
                           http://www.springframework.org/schema/tx/spring-tx.xsd">


    <bean name="/hello.htm" class="springapp.web.InventoryController">
        <property name="productManager" ref="productManager" />
        <property name="productDao" ref="productDao" />
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>


    ...


    <!-- Hibernate -->
    <bean id="sessionFactory"
        class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">

        <property name="dataSource">
            <ref bean="dataSource" />
        </property>

        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
                <prop key="hibernate.show_sql">true</prop>
            </props>
        </property>

        <property name="mappingJarLocations">
            <list>
                <value>WEB-INF/lib/springapp-dataaccess*.jar</value>
            </list>
        </property>
    </bean>

    <bean id="productDao" class="springapp.dataaccess.dao.ProductHibernateDao">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>

    <tx:annotation-driven />

    <bean id="transactionManager"
        class="org.springframework.orm.hibernate4.HibernateTransactionManager"
        p:sessionFactory-ref="sessionFactory" />

</beans>

如果从配置中删除<tx:annotation-driven />,则不会发生上述异常,但测试失败,因为处理程序中发生的数据访问调用不再具有打开的事务。该应用程序在测试之外运行得很好。任何人对这个问题有什么想法?

2 个答案:

答案 0 :(得分:1)

InventoryController实现任何接口时,Spring默认使用基于接口的代理将事务方面应用于它。这样的代理实现了InventoryController的接口,但它不是InventoryController的子类,因此不能将其注入到InventoryController类型的字段中。

您需要使用interface作为要自动装配的字段的类型,或者将Spring配置为应用基于目标类的代理。

另见:

答案 1 :(得分:0)

在运行我正在构建的小型库的单元测试时,我遇到了类似的问题。

替换你的:

<tx:annotation-driven />

<tx:annotation-driven transaction-manager="transactionManager" proxy-target-class="true"/>

请注意,在我的项目中,我还必须为单元测试添加以下依赖项(maven项目):

    <dependency>
        <groupId>cglib</groupId>
        <artifactId>cglib</artifactId>
        <version>2.2.2</version>
        <scope>test</scope>
    </dependency>

最好的问候。