启动弹簧批处理作业时将对象作为参数传递

时间:2016-01-08 15:11:56

标签: java spring spring-batch

我的服务是开始春季批处理作业。我想能够将一些对象传递给作业,每次这个对象参数都不同。我需要在我的tasklet中使用这个对象。 我正在JobLauncher开始工作。据我搜索,我看到JobParameters在这种情况下不会帮助我。 我还发现很多答案都是使用JobExecutionContext或者其他任何东西。但是我想在作业开始之前注入参数对象。 是不可能的?

启动工作的服务

@Service
public class MyServiceImpl implements MyService {
    @Autowired
    private JobLauncher jobLauncher;
    @Autowired
    private Job myJob;

    @Override
    public MyResponse startJob(InputParameter inputObject) {
        try {
            //Here I want to pass somehow inputObject ot JobExecution
            jobLauncher.run(myJob, new JobParameters());
        } catch (Exception e) {
            return new MyResponse("FAILED")
        }
        return new MyResponse("OK");
    }
}

我的Tasklet

@Component
@Scope("step")
public class MyTasklet implements Tasklet{

    @Override
    public RepeatStatus execute(StepContribution contribution, ChunkContext chunkContext) throws Exception {
        InputParameter inputObject = chunkContext.getStepContext().getJobExecutionContext().get("inputObject");
        //... the main logic
        return RepeatStatus.FINISHED;
    }
}

2 个答案:

答案 0 :(得分:2)

以下是我将params传递给Job的方法:

$GFHome/glassfish4/javadb/bin/ij

答案 1 :(得分:2)

使用以下类发送CustomObject。

public static class CustomJobParameter<T extends Serializable> extends JobParameter {
        private T customParam;
        public CustomJobParameter(T customParam){
            super("");
            this.customParam = customParam;
        }
        public T getValue(){
            return customParam;
        }
    }

===========================

用法:

发送参数:

JobParameters paramJobParameters = new JobParametersBuilder().addParameter("customparam", new CustomJobParameter(myClassReference)).toJobParameters();

检索参数:

MyClass myclass = (MyClass)jobExecution.getJobParameters().getParameters().get("customparam").getValue();