develog

quartz, Cron Expressions 본문

Dev/Java

quartz, Cron Expressions

냐옴 2013. 9. 5. 14:22

Cron Expressions

http://quartz-scheduler.org/documentation/quartz-2.x/tutorials/crontrigger

http://quartz-scheduler.org/documentation/quartz-2.2.x/tutorials/tutorial-lesson-06

http://quartz-scheduler.org/api/2.2.0/org/quartz/CronExpression.html

 

 Field Name  Allowed Values  Allowed Special Characters
 Seconds  0-59  , - * /
 Minutes  0-59  , - * /
 Hours  0-23  , - * /
 Day-of-month  1-31  , - * ? / L W
 Month  1-12 or JAN-DEC  , - * /
 Day-of-Week  1-7 or SUN-SAT  , - * ? / L #
 Year (Optional)  empty, 1970-2199  , - * /

 

# 초 분 시 일 월 주 연도(optional)
# 초 분 시 일 월 주
0/1 * * * * ?        # 매 1초 간격
0 0/1 * * * ?        # 매 1분 간격
0 0 0/1 * * ?        # 매 1시간 간격
0 0 0 * * ?          # 매일 0시 마다
0 0 0 1 * ?          # 매월 1일 마다
0 0 0 1,10,20 * ?    # 매월 1일, 10일, 20일 마다

'Dev > Java' 카테고리의 다른 글

[Java] log4sql, jdbc driverClass  (0) 2013.12.03
POI 정리  (0) 2013.10.16
quartz  (0) 2013.09.05
Apache Derby 설치  (0) 2013.08.24
java file copy test  (0) 2013.08.21
Comments