Spring Batch란? 대용량 일괄처리의 편의를 위해 설계된 가볍고 포괄적인 배치 프레임워크다. 1. Gradle에 의존성 추가 implementation 'org.springframework.boot:spring-boot-starter-batch' implementation 'org.springframework.boot:spring-boot-starter-quartz' testImplementation 'org.springframework.batch:spring-batch-test' 2. BatchConfig.java 생성 @Slf4j @Configuration @EnableBatchProcessing public class BatchConfig { @Autowired public JobBuilde..