packagecom.example.schedulingtasks;importjava.text.SimpleDateFormat;importjava.util.Date;importorg.slf4j.Logger;importorg.slf4j.LoggerFactory;importorg.springframework.scheduling.annotation.Scheduled;importorg.springframework.stereotype.Component;@ComponentpublicclassScheduledTasks{privatestaticfinalLoggerlog=LoggerFactory.getLogger(ScheduledTasks.class);privatestaticfinalSimpleDateFormatdateFormat=newSimpleDateFormat("HH:mm:ss");@Scheduled(fixedRate=5000)publicvoidreportCurrentTime(){log.info("The time is now {}",dateFormat.format(newDate()));}}
예제에서는 fixedRate를 이용했지만, fixedDelay나 cron을 사용하여 스케줄링을 할 수도 있다. cron의 경우 "0 * * * * MON-FRI"로 설정하면 월-금동안 1분에 한번씩 실행된다.