要点是Spring Batch(v2)测试框架的JobLauncherTestUtils.setJob
带有@Autowired
注释。我们的测试套件有多个Job
类提供程序。由于这个课程不是我可以修改的课程,我不确定如何确定自动配对的工作,每个测试可能会有所不同。
STDOUT [WARN ] [2015.04.15 11:14:42] support.GenericApplicationContext - Exception encountered during context initialization - cancelling refresh attempt
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'jobLauncherTestUtilsForSnapshot': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire method: public void org.springframework.batch.test.JobLauncherTestUtils.setJob(org.springframework.batch.core.Job); nested exception is org.springframework.beans.factory.NoUniqueBeanDefinitionException: No qualifying bean of type [org.springframework.batch.core.Job] is defined: expected single matching bean but found 2: coverageRuleBatch,generateMetricsSnapshotJob
我已尝试添加已识别的JavaConfig,但错误表明它仍在自动调用setJob
@Configuration
public class SpringTestConfiguration
{
@Bean
public JobLauncherTestUtils jobLauncherTestUtilsForSnapshot( final Job generateMetricsSnapshotJob )
{
JobLauncherTestUtils jobLauncherTestUtils = new JobLauncherTestUtils();
jobLauncherTestUtils.setJob( generateMetricsSnapshotJob );
return jobLauncherTestUtils;
}
}
注意:我不需要JavaConfig解决方案,但它很好。另外,如果可能的话,我仍然希望像JobRepository这样的Autowire字段,因为只有一个。
答案 0 :(得分:3)
当我遇到同样的问题时,我的解决方案是限制组件扫描,以便在测试环境中只创建一个Job bean。
@Configuration
@ComponentScan(basePackages={
"com.example.batch.jobs.metrics", //package where generateMetricsSnapshotJob is the only job
"com.example.batch.common",
"..."
})
public class SpringTestConfiguration
{
@Bean
public JobLauncherTestUtils jobLauncherTestUtils()
{
//generateMetricsSnapshotJob and other requirements will be autowired
return new JobLauncherTestUtils();
}
}
您可能需要调整包结构才能使其正常工作。
答案 1 :(得分:3)
我提出的解决方案
@Configuration
public class SpringBatchTestConfiguration
{
@Bean
public static JobLauncherTestUtils jobLauncherTestUtilsForSnapshot()
{
return new SnapshotJobLauncherTestUtils();
}
public static class SnapshotJobLauncherTestUtils extends JobLauncherTestUtils
{
@Override
@Qualifier( "generateMetricsSnapshotJob" )
public void setJob( final Job job )
{
super.setJob( job );
}
}
}
并在最后的测试中
@Autowired
@Qualifier( "jobLauncherTestUtilsForSnapshot" )
protected JobLauncherTestUtils jobLauncherTestUtils;
相当自信我可以用@Component注释我的TestUtils并正确命名并做同样的事情。
答案 2 :(得分:2)
其他类型的解决方案是通过setter注入它。我更喜欢这种解决方案,因为它更清晰,更容易。
@Configuration
public class SpringTestConfiguration
{
@Bean
public JobLauncherTestUtils jobLauncherTestUtilsForSnapshot()
{
return new JobLauncherTestUtils() {
@Override
@Autowired
public void setJob(@Qualifier("generateMetricsSnapshotJob") Job job) {
super.setJob(job);
}
};
}
}
答案 3 :(得分:0)
也许您可以使用Spring配置文件。为每个Job
提供者bean定义(使用注释@Profile("profileName")
分配不同的配置文件,然后使用注释@ActiveProfiles("profileName")
激活特定测试类上正确提供者的配置文件。
答案 4 :(得分:0)
您可以扩展AutowiredAnnotationBeanPostProcessor并覆盖 注射方法。
删除<context:scan .. />
个条目
注册您的bean <bean class ="a.b.CustomAutowiredAnnotationBeanPostProcessor" />