Spring4 Scheduling - Demon
2015. 5. 19. 13:45ㆍJAVA/Spring(eGovFrame)
실질적으로 Schedule를 설정하는 java 파일입니다.
package com.intercast.schedule.service;import javax.annotation.Resource;
import org.springframework.scheduling.annotation.Scheduled;
public class Demon {
@Resource(name="scheduleService") ScheduleService scheduleService;
@Scheduled(cron="0/5 * * * * *")
public void printHello() {
scheduleService.insertUser();
}
}
보시는 바와 같이 @Scheduled를 설정합니다.
Scheduled 설정에 관하여서는 따로 설명을 드리지 않겠습니다.
저의 경에는 cron을 사용하여 설정을 하였습니다.
이후의 방식은 MVC 방식의 Service 및 DAO 구현과 동일하게 진행하시면 됩니다.
'JAVA > Spring(eGovFrame)' 카테고리의 다른 글
@PropertySource를 이용하여 Property 등록 (0) | 2015.05.19 |
---|---|
Spring4 Scheduling - Application (0) | 2015.05.19 |
Spring4 Scheduling - Spring 설정 (0) | 2015.05.19 |
Spring4 Scheduling - 환경설정 (0) | 2015.05.19 |
Spring4 Scheduling - 폴더구조 (0) | 2015.05.19 |