Package org.springframework.batch.core.repository

Examples of org.springframework.batch.core.repository.JobRepository.update()


    assertEquals(StubStep.value, execution.getExecutionContext().get(StubStep.key));

    // simulate restart and check the job execution context's content survives
    execution.setEndTime(new Date());
    execution.setStatus(BatchStatus.FAILED);
    repository.update(execution);

    JobExecution restarted = repository.createJobExecution("testHandleStepJob", new JobParameters());
    assertEquals(StubStep.value, restarted.getExecutionContext().get(StubStep.key));
  }
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.