Spring guide (스프링 가이드 실습) https://spring.io/guides/gs/scheduling-tasks/ ▶ 학습목표 1. Spring 을 이용하여 기본적인 스케쥴링을 할 수 있다. ▶ Dependency - build.gradle 더보기 plugins { id 'org.springframework.boot' version '2.6.1' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java' } group = 'com.example' version = '0.0.1-SNAPSHOT' sourceCompatibility = '1.8' repositories { mavenCentral() } dependencies..