Class ExecutionContextTestUtils

java.lang.Object
org.springframework.batch.test.ExecutionContextTestUtils

public abstract class ExecutionContextTestUtils extends Object
Convenience class for accessing ExecutionContext values from job and step executions.
Since:
2.1.4
Author:
Dave Syer, Mahmoud Ben Hassine, Taeik Lim
  • Method Details

    • getValueFromJob

      @Nullable public static <T> T getValueFromJob(JobExecution jobExecution, String key)
    • getValueFromStepInJob

      @Nullable public static <T> T getValueFromStepInJob(JobExecution jobExecution, String stepName, String key)
    • getValueFromStep

      @Nullable public static <T> T getValueFromStep(StepExecution stepExecution, String key)