스케쥴링은 일련의 반복되는 행위를 자동으로 간편하게 작성할수 있다. 예를들면 리눅스 시스템의 cron 처럼. 스케쥴 기능 켜기 자바 설정에서 @EnableScheduling 추가하면 스케쥴 기능을 사용할수 있다. main class 에 추가하자. @SpringBootApplication @EnableScheduling public class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); } } 스케쥴 구현 @Scheduled 어노테이션을 사용하면 사용가능하며 실행주기는 cron, fixedDelay, fixedRate 라는 세개의 속성으로 지정할 수 있다..