728x90
[[ 스프링 스케줄러 설정 방법 ]]
1. xml 설정
xmlns:task="http://www.springframework.org/schema/task"
http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd
<task:annotation-driven />
2. Annotation 사용
// 스케줄러
@Scheduled(cron="0 20 23 * * ?")
public void test() {
System.out.println("스케줄러 실행");
}