我正在整合弹簧批和石英。我已经通过了石英Jobparameter中的一些参数。但是我没有在Spring Batch的步骤执行中获得价值。我不知道如何在Spring批处理中获取石英作业上下文
JobParameters params = new JobParametersBuilder()
.addString("jobName",jobName)
.toJobParameters();
jobLauncher.run(job, params);
@Override
public void beforeStep(StepExecution stepExecution) {
this.jobName= stepExecution.getJobExecution().getJobParameters().getString("jobName");