Scheduler Images 썸네일형 리스트형 Spring 14. Scheduler(1) ▶ Scheduler : 매일, 매분, 매초, 매주, 매달, .. 등 반복적으로 실행시켜야 하는 작업(프로세스)가 있는 경우 스프링 스케쥴러를 사용하면 간편하게 셋팅 가능하다. ▶ Spring Scheduler 작업순서 1. xml파일 만들고 task, context 스키마를 등록(하단 namespace탭을 이용) 2. 스케쥴링 관련 annotation 활성화 3. 스케쥴러로 사용할 클래스들을 bean객체로 등록 4. web.xml에 프로그램 구동시 현재 xml이 읽혀지도록 등록 -> *-context.xml로 등록 5. 스케쥴링을 원하는 메서드에서 schedule어노테이션 추가(#2가 되어있어야 함) -> ScheduleController.java에 추가함 // scheduler-context.xml .. 더보기 이전 1 다음