Package org.springframework.batch.core.job

Examples of org.springframework.batch.core.job.JobSupport.addStep()


  private void configureStep(TaskletStep step) throws JobExecutionAlreadyRunningException, JobRestartException,
  JobInstanceAlreadyCompleteException {

    this.step = step;
    JobSupport job = new JobSupport();
    job.addStep(step);
    job.setBeanName("testJob");
    jobExecution = jobRepository.createJobExecution(job.getName(), new JobParameters());
    step.setJobRepository(jobRepository);
    step.setTransactionManager(new ResourcelessTransactionManager());
    itemWriter = new ItemWriter<Object>() {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.