Why Spring Boot Batch job is running just one time?

孤街浪徒 提交于 2019-12-10 08:44:05

问题


I'm using spring boot. I have a batch job which I've implemented with these classes :

My main class is :

@SpringBootApplication
@ComponentScan("com.batch")
@PropertySource("classpath:application.properties")
public class Application {

    public static void main(String[] args) {
        SpringApplication.run(Application.class);
    }

}

My scheduler is :

@Component
@EnableScheduling
public class JobScheduler {

    @Scheduled(fixedRate = 10000)
    public void runJob() {
        SpringApplication.run(MyBatchConfig.class);
    }
}

and my batch configuration class is :

@Configuration
@EnableBatchProcessing
public class MyBatchConfig {

    @Value("${database.driver}")
    private String databaseDriver;
    @Value("${database.url}")
    private String databaseUrl;
    @Value("${database.username}")
    private String databaseUsername;
    @Value("${database.password}")
    private String databasePassword;

    @Bean
    public Job myJob(JobBuilderFactory jobs, Step s) {
        Job job = jobs.get("myJob")
                .incrementer(new RunIdIncrementer())
                .flow(s)
                .end()
                .build();
        return job;
    }

    @Bean
    public Step myStep(StepBuilderFactory stepBuilderFactory, ItemReader<Account> reader,
                      ItemWriter<Person> writer, ItemProcessor<Account, Person> processor) {
        TaskletStep step = stepBuilderFactory.get("myStep")
                .<Account, Person>chunk(1)
                .reader(reader)
                .processor(processor)
                .writer(writer)
                .build();
        step.setAllowStartIfComplete(true);
        return step;
    } ...

now, my problem is :

the scheduler works and it repeats every ten seconds, but the job executes only on application startup(reader, processor and writer just execute once in startup) and it seems that

SpringApplication.run(MyBatchConfig.class);

has no effect on re-running the job.

what should I do?

Thanks in advance


回答1:


This is what I can think of,

1.You put this property in application.properties so your batch job doesn't start automatically by call of SpringApplication.run(...) from mainmethod.

spring.batch.job.enabled=false

This will simply initialize your Spring Batch configuration and not actually start job.

2.Put annotation @EnableScheduling on your Spring Boot Batch Job starting class i.e. on Application class in your code.

3.Remove @EnableScheduling annotation from JobScheduler class and call , jobLauncher.run(job, jobParameters) from runJob() instead of calling SpringApplication.run(MyBatchConfig.class).

JobLauncher & Job beans can be auto wired to your scheduler class since context is already initialized.

Hope it helps !!




回答2:


You need to create JobLauncher bean and use that in scheduler for starting new job instances.



来源:https://stackoverflow.com/questions/41361883/why-spring-boot-batch-job-is-running-just-one-time

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!