0

Spring MVC + Hibernate + MySQLの「HelloWorld」アプリで遊んでいます。現在、jUnitを使用してSpringMVCコントローラーで次の統合テストを実行しようとしています。

@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トランザクション管理とともに追加したため、このエラーが発生します。アプレットコンテキスト構成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 />、上記の例外は発生しませんが、ハンドラーで発生するデータアクセス呼び出しに開いているトランザクションがないため、テストは失敗します。アプリはテスト以外では問題なく動作します。問題が何であるかについて誰かが何か考えを持っていますか?

4

2 に答える 2

1

インターフェースを実装する場合InventoryController、Springはデフォルトで、インターフェースベースのプロキシを使用してトランザクションの側面を適用します。このようなプロキシはInventoryController、のインターフェイスを実装しますが、のサブクラスでInventoryControllerはないため、タイプのフィールドに挿入することはできませんInventoryController

自動配線されるフィールドのタイプとしてインターフェースを使用するか、代わりにターゲットクラスベースのプロキシを適用するようにSpringを構成する必要があります。

参照:

于 2012-04-09T19:47:28.140 に答える
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>

よろしくお願いします。

于 2012-04-10T07:48:00.927 に答える