Entity

Untitled

Logic

Untitled

Implement

Program arguments setting

Untitled

1. step02 강제 failed 발생 시

private Step step02() {
    return stepBuilderFactory.get("step02")
            .tasklet((contribution, chunkContext) -> {
                throw new RuntimeException("step02 has failed.");
            })
            .build();
}

Untitled

2. 다시 step02 정상 실행 시

Untitled

Untitled