@Scheduled 사용법에 대해 소스 예제를 들어 설명하겠습니다. 1. @EnableScheduling 추가 1) @SpringBootApplication에 선언 package me.rooted.schedule; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.scheduling.annotation.EnableScheduling; @EnableScheduling @SpringBootApplication public class SpringSchedulerApplication { public s..