You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
583 B
33 lines
583 B
package org.test |
|
|
|
@Grab("hsqldb") |
|
@Configuration |
|
@EnableBatchProcessing |
|
class JobConfig { |
|
|
|
@Autowired |
|
private JobBuilderFactory jobs |
|
|
|
@Autowired |
|
private StepBuilderFactory steps |
|
|
|
@Bean |
|
protected Tasklet tasklet() { |
|
return new Tasklet() { |
|
@Override |
|
RepeatStatus execute(StepContribution contribution, ChunkContext context) { |
|
return RepeatStatus.FINISHED |
|
} |
|
} |
|
} |
|
|
|
@Bean |
|
Job job() throws Exception { |
|
return jobs.get("job").start(step1()).build() |
|
} |
|
|
|
@Bean |
|
protected Step step1() throws Exception { |
|
return steps.get("step1").tasklet(tasklet()).build() |
|
} |
|
}
|
|
|