I would suggest you use a processor that updates your Entity with value. If your processors directly implements ItemProcessor<T>
then you will not automatically get the StepExecution
. To get the StepExecution
, do 1 of the following;
- implement StepExecutionListener and set it as a variable from the beforeStep
method
- create a method called [something](StepExecution execution)
and annotate with @BeforeStep
once you've injected the StepExecution via a listener, you can then get the jobExecutionId and set it into your entity
public class MyEntityProcessor implements ItemProcessor<MyEntity, MyEntity> {
private long jobExecutionId;
@BeforeStep
public void beforeStep(StepExecution stepExecution) {
jobExecutionId = stepExecution.getJobExecutionId();
}
@Override
public MyEntity process(MyEntity item) throws Exception {
//set the values
item.setJobExecutionId(jobExecutionId);
//continue
return item;
}
}