springbatch
-
JAVA Fix Duplicate Job Execution in Spring Batch Using StepScope | Reader/WriterBrawny Develop/EN_Practical Development Basics_Java 2025. 6. 25. 11:26
Unexpected Multiple Job Execution in Spring BatchWhen working with Spring Batch, you might experience a situation where triggering one job unexpectedly causes other unrelated jobs to execute as well.This issue is often related to shared ItemReader and ItemWriter beans being used across multiple jobs, leading to unwanted state conflicts and execution overlap.🔹 The Singleton Scope Problem of Item..
-
[JAVA] Spring Batch job 동시에 실행되는 원인 문제 해결 방법 | ItemReader, ItemWriterBrawny Develop/KR_Practical Development Basics_Java 2025. 6. 25. 11:16
Spring Batch에서 Job이 동시에 실행되는 문제Spring Batch 환경에서 Job을 여러 개 운영하다 보면,특정 Job을 실행했는데 의도치 않게 다른 Job도 동시에 실행되는 현상을 경험할 수 있습니다.이 문제는 주로 여러 Job 간 ItemReader와 ItemWriter가 빈으로 공유되면서 발생하는 상태 충돌 때문입니다.🔹ItemReader와 ItemWriter의 싱글톤 빈 문제Spring Batch에서 기본적으로 ItemReader, ItemWriter는 싱글톤 빈으로 등록됩니다.애플리케이션 실행 시점에 한 번 생성되어 모든 Job과 Step이 같은 인스턴스를 공유하는 구조입니다.이로 인해 병렬 실행 혹은 여러 Job을 동시에 돌릴 때 상태가 꼬이는 문제가 발생할 수 있습니다.특히 j..