1

JUnit 統合テストを実行したい Maven Web プロジェクトがありますこれを実現するには、 applicationContext.xmlファイルをロードして、Spring が注入された Bean を取得します。また、アプリケーション コンテキスト ファイルは にありますがsrc/main/resources/app_context、Maven のライフサイクルを実行すると に配置されるWEB-INF/classes/application_contextため、クラスパスを介してアクセスできます。

<resource>
    <directory>src/main/resources/appcontext</directory>
    <targetPath>${basedir}/src/main/webapp/WEB-INF/classes/application_context</targetPath>
    <filtering>true</filtering>
    <includes>
        <include>*/**</include>
    </includes>
</resource>

いくつかの方法でそのコンテキストにアクセスしようとしましたが、成功しませんでした。また、それらを Maven のターゲット テスト ディレクトリに次のように配置しています。

<testResources>
    <testResource>
        <directory>
                src/main/resources/appcontext
            </directory>
        <targetPath>${basedir}/src/main/webapp/WEB-INF/classes/application_context</targetPath>
    </testResource>
</testResources>

これは私のテストの一部です:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:**/applicationContext.xml" })
@Transactional
public class SystemTest {

    @Autowired
    ApplicationContext applicationContext;

    @Test
    public void initializeSystemTest() {
            //Test code

これが、メインのアプリケーション コンテキスト ファイルから残りのアプリケーション コンテキスト ファイルにアクセスする方法です。

<?xml version="1.0" encoding="ISO-8859-15"?>

<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:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:cxf="http://cxf.apache.org/core" xmlns:jaxws="http://cxf.apache.org/jaxws"
xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
        http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.1.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd">

    <import resource="classpath:application_context/ApplicationContext*.xml" />
    <context:annotation-config />
    <!--========== Spring Data Source ========== -->
    <!--Bean stuff-->

src/main/resources基本的に、保存されている applicationContext ファイルのそれぞれのコピーのみを保持し、Maven にそれらをテストおよび実行スコープ用にコピーさせたいと考えています。ただし、私のテストクラスはそれらを見つけてロードできません。私がしなければならないこと?

4

1 に答える 1

2

applicationContext.xmlあなたが にあると仮定するとsrc/main/resources/appcontext、Maven はWEB-INF/classes/appcontextデフォルトでそれを再割り当てします。そのリソースに新しいパスを割り当てる必要はありません。

次のコマンドを使用して、テストでコンテキスト ファイルを見つけることができるはずです。

@ContextConfiguration(locations={"/appcontext/applicationContext.xml"})

これには追加の Maven 設定は必要ありません。

于 2013-01-17T09:36:47.387 に答える