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일 마다