7

spring-batch でステップの機能テストを実行しているときに、以下のエラーが発生します。以下のエラーを取得:

Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [org.springframework.batch.test.JobLauncherTestUtils] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
at org.springframework.beans.factory.support.DefaultListableBeanFactory.raiseNoSuchBeanDefinitionException(DefaultListableBeanFactory.java:924)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:793)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:707)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:478)

以下は、これに使用される構成ファイルとテスト ファイルです。

custom-context.xml ファイル:

<batch:job id="custom.entities">
    <batch:step id="entity.processor">
        <batch:tasklet>
            <batch:chunk reader="customReader" writer="customWriter" commit-interval="1" />
        </batch:tasklet>
    </batch:step>
</batch:job>

<bean id="customReader" class="com.batch.custom.EntityReader" scope="step">
    <property name="providerId" value="#{jobParameters['providerId']}" />
</bean>

<bean id="customWriter" class="org.springframework.batch.item.file.FlatFileItemWriter">
    <property name="resource" value="file:c:/Temp/ledgers-output.txt"/>
    <property name="lineAggregator">
        <bean class="org.springframework.batch.item.file.transform.PassThroughLineAggregator" />
    </property>
</bean>

CustomJobTest.java ファイル

@Autowired
private JobLauncherTestUtils jobLauncherTestUtils;

@Autowired
private ItemReader<WatchlistDataSet> reader;

@Test
@DirtiesContext
public void testLaunchJob() throws Exception {

    JobParameters jobParameters = new JobParametersBuilder().addString("providerId", "cnp_1").toJobParameters();

    JobExecution exec = jobLauncherTestUtils.launchStep("entity.processor", jobParameters);

    assertEquals(BatchStatus.COMPLETED, exec.getStatus());

}

public JobLauncherTestUtils getJobLauncherTestUtils() {
    return jobLauncherTestUtils;
}

public void setJobLauncherTestUtils(JobLauncherTestUtils jobLauncherTestUtils) {
    this.jobLauncherTestUtils = jobLauncherTestUtils;
}
4

1 に答える 1

16

いくつかのグーグル検索の後、JUnit テストに使用される context.xml で Bean 定義を指定する必要があることがわかりました。

<bean id="jobLauncherTestUtils" class="org.springframework.batch.test.JobLauncherTestUtils" >
    <property name="job" ref="custom.entities"/>
    <property name="jobRepository" ref="jobRepository"/>
    <property name="jobLauncher" ref="jobLauncher"/>
</bean>

上記の定義により、JobLauncherTestUtils を自動配線できます。

于 2013-06-30T11:07:26.800 に答える