Grails 用の Spring バッチ プラグイン (spring-batch-1.0.RC2) を使用しています。今のところ正常に動作しているのですが、フローを分割して実行したいのですが…対応していますか?これは私が実行しようとしているコードです...しかし、結果はStep1、Step2、Step3、Step 4です。
beans {
xmlns batch:"http://www.springframework.org/schema/batch"
jobLauncher(org.springframework.batch.core.launch.support.SimpleJobLauncher){
jobRepository = ref("jobRepository")
taskExecutor = bean(org.springframework.core.task.SimpleAsyncTaskExecutor)
taskExecutorParallel = bean(org.springframework.core.task.SimpleAsyncTaskExecutor)
}
batch.job(id: 'endOfDayJob') {
batch.step(id: 'logStart', next:'createContext') {
batch.tasklet(ref: 'printStartMessage')
}
batch.step(id: 'createContext', next:'split1') {
batch.tasklet(ref: 'context')
}
batch.split(id: 'split1',taskexecutor:'taskExecutorParallel', next:'logFinish' ) {
batch.flow{
batch.step(id:'step1Id', next:'step2Id'){
batch.tasklet(ref: 'step1')
}
batch.step(id: 'step2Id') {
batch.tasklet(ref: 'step2')
}
}
batch.flow{
batch.step(id:'step3Id', next:'step4Id'){
batch.tasklet(ref: 'step3')
}
batch.step(id: 'step4Id') {
batch.tasklet(ref: 'step4')
}
}
}
batch.step(id: 'logFinish') {
batch.tasklet(ref: 'printEndMessage')
}
}
ありがとう!