创建名称为' batchConfigurer'的bean时出错在Spring Boot中

时间:2018-06-01 03:04:05

标签: spring mongodb spring-boot spring-batch

我有一个使用Spring启动编写的弹簧批。我的批处理只从MongoDB读取并打印记录。 我没有使用任何SQL DB,也没有在项目中声明任何依赖项,但在运行它时我得到了以下异常:

s.c.a.AnnotationConfigApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'batchConfigurer' defined in class path resource [org/springframework/boot/autoconfigure/batch/BatchConfigurerConfiguration$JdbcBatchConfiguration.class]: Unsatisfied dependency expressed through method 'batchConfigurer' parameter 1; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'javax.sql.DataSource' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {}
o.s.j.e.a.AnnotationMBeanExporter        : Unregistering JMX-exposed beans on shutdown
ConditionEvaluationReportLoggingListener : 

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2018-06-01 10:43:39.485 ERROR 15104 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 

 ***************************
 APPLICATION FAILED TO START
 ***************************

 Description:

 Parameter 1 of method batchConfigurer in org.springframework.boot.autoconfigure.batch.BatchConfigurerConfiguration$JdbcBatchConfiguration required a bean of type 'javax.sql.DataSource' that could not be found.
- Bean method 'dataSource' not loaded because @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name'
- Bean method 'dataSource' not loaded because @ConditionalOnClass did not find required class 'javax.transaction.TransactionManager'


 Action:

 Consider revisiting the conditions above or defining a bean of type 'javax.sql.DataSource' in your configuration.

在我的pom.xml中,我添加了以下依赖项:

spring-boot-starter-batch
spring-boot-starter-data-mongodb
spring-boot-starter-test
spring-batch-test

这是我的批量配置类:

@Configuration
@EnableBatchProcessing
public class BatchConfig {

    @Autowired
    private JobBuilderFactory jobBuilderFactory;

    @Autowired
    private StepBuilderFactory stepBuilderFactory;

    @Autowired
    private MongoTemplate mongoTemplate;

    @Bean
    public Job job() throws Exception {
        return jobBuilderFactory.get("job1").flow(step1()).end().build();
    }

    @Bean
    public Step step1() throws Exception {
        return stepBuilderFactory.get("step1").<BasicDBObject, BasicDBObject>chunk(10).reader(reader())
                .writer(writer()).build();
    }

    @Bean
    public ItemReader<BasicDBObject> reader() {
        MongoItemReader<BasicDBObject> reader = new MongoItemReader<BasicDBObject>();
        reader.setTemplate(mongoTemplate);
        reader.setCollection("test");
        reader.setQuery("{'status':1}");
        reader.setSort(new HashMap<String, Sort.Direction>() {
            {
                put("_id", Direction.ASC);
            }
        });
        reader.setTargetType((Class<? extends BasicDBObject>) BasicDBObject.class);
        return reader;
    }

    public ItemWriter<BasicDBObject> writer() {
        MongoItemWriter<BasicDBObject> writer = new MongoItemWriter<BasicDBObject>();
        return writer;
    }

}

这是我的发射器类:

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;

@SpringBootApplication(exclude = DataSourceAutoConfiguration.class)
public class MyBatchApplication {
...
}

1 个答案:

答案 0 :(得分:1)

Spring Batch需要为作业存储库使用关系数据存储。 Spring Boot强制执行这一事实。为了解决这个问题,您需要添加内存数据库或创建使用基于Map的存储库的自己的BatchConfigurer。对于记录,建议的方法是添加内存数据库(HSQLDB / H2 / etc)。