I have to run a Spring Batch Job comprising of steps A,B,C based on properties file . I found out that we can use JobExecutionDecider
in spring batch . But most of the examples given are using single condition . For example
public class NumberInfoDecider implements JobExecutionDecider {
private boolean shouldNotify() {
return true;
}
@Override
public FlowExecutionStatus decide(JobExecution jobExecution, StepExecution stepExecution) {
if (shouldNotify()) {
return new FlowExecutionStatus(NOTIFY);
} else {
return new FlowExecutionStatus(QUIET);
}
}
The above example uses only shouldNotify()
. But in my case I need to use the same JobExecutionDecider
to check three different properties and return the status dynamically . I need the functionality like below
//Properties file
StepA=true
StepB=false
StepC=false
//Program Functionality
if(stepA)
execute StepA
if(Step B)
execute Step B
if(Step C)
execute Step C
Just add variables and set them during bean initialization
XML config
Or Java config