StepExecutionContext « Batch « Spring Q&A





1. Writing to the StepExecutionContext in multi-threaded steps in Spring Batch    stackoverflow.com

I am using Spring Batch and I've created a tasklet that is run by using a SimpleAsyncTaskExecutor. In this step, I am retrieving the StepExecutionContext with

@BeforeStep
public void saveStepExecution(StepExecution stepExecution) {
  ...

2. Do we have ChunkExecutionContext similar to StepExecutionContext in Spring Batch?    stackoverflow.com

Spring Batch Version: 2.1.8
We want to do something after each chunk is written, and set some data inside a context which is valid only for the chunk. This data is then ...

3. Batch Restart is not accessing all the values stored in Job/StepExecutionContext    forum.springsource.org

Batch Restart is not accessing all the values stored in Job/StepExecutionContext Hi Spring Batch team, In our job, we have 3 steps configured. Step1: Is storing 10 key value pairs to ...