본문 바로가기

Spring

@Scheduled, cron

@Scheduled(cron = "* * * * * *")
// cron : "초 , 분 , 시간 , 일 , 월 , 요일( 1 ~ 6 )

ex) 0 * * * * * => 0초 마다 실행 ( 01:06:00, 01:07:00, 01:08:00 ...)