2013-06-29 19 views
6

Tôi nhận được lỗi dưới đây trong khi thực hiện kiểm tra chức năng cho một bước trong lô xuân. Nhận được lỗi dưới đây:Không thể tự động JobLauncherTestUtils trong 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) 

Dưới đây là tệp cấu hình và tệp Kiểm tra được sử dụng cho điều này.

tùy chỉnh context.xml file:

<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 tập tin

@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; 
} 

Trả lời

14

Sau khi một số googling phát hiện ra rằng một định nghĩa bean cần phải được quy định trong context.xml sử dụng cho JUnit thử nghiệm.

<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> 

Với định nghĩa trên, tôi có thể tự động JobLauncherTestUtils.

Các vấn đề liên quan