Batch2 스프링배치 scope 스프링 배치에서는 @JobScope @StepScope 를 이용해서 bean Scope를 생성할 수 있다. @JobScope 는 step 에 사용할 수 있으며 @StepScope 는 reader / processor / writer 혹은 tasklet 에 사용할 수 있다. Thread-safe Step 에 사용된 @JobScope 는 Job이 실행되는 경우, Late Binding 되어 프록시형태로 새로운 빈이 등록된다. reader / processor / writer / tasklet에 사용된 @StepScope 는 매번 Step 이 실행되는 경우, Late Binding 되어 프록시형태로 새로운 빈이 등록된다 간단한 코드를 통해 새로운 Step 이 빈으로 등록되는지 확인해보았다. @PostConst.. 2021. 4. 4. 간단한 Batch Domain 알아보기 아래의 링크를 참고하여 배치에서 사용하는 도메인을 정리합니다. 아직 부족한 실력이어서 틀린 부분이 있을 수 있습니다. 틀린 부분이 있다면 댓글이나 robin00q@naver.com으로 이메일주시면 반영하겠습니다. docs.spring.io/spring-batch/docs/current/reference/html/domain.html#domainLanguageOfBatch The Domain Language of Batch This section describes stereotypes relating to the concept of a batch job. A Job is an entity that encapsulates an entire batch process. As is common with other.. 2020. 11. 14. 이전 1 다음