* actuator -> boot-ops * cli -> boot-cli * launcher -> boot-load * autoconfig -> boot-config * bootstrap -> boot-strap * starters -> boot-up [#54095231] [bs-253] Refactor Zero->Boot
36 lines
641 B
Groovy
36 lines
641 B
Groovy
package org.test
|
|
|
|
@Grab("org.hsqldb:hsqldb-j5:2.0.0")
|
|
@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()
|
|
}
|
|
}
|
|
|
|
|