Quartz 学习 第二课 CronTrigger

 

CronTrigger 语法不同于Linux的 CronTab

 

  1. Seconds []
  2. Minutes [0-59]
  3. Hours [0-23]
  4. Day-of-Month  [Day-of-Month can be any value 0-31, but you need to be careful about how many days are in a given month!]
  5. Month   [Months can be specified as values between 0 and 11, or by using the strings JAN, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV and DEC]
  6. Day-of-Week   [ 1 and 7 (1 = Sunday) or by using the strings SUN, MON, TUE, WED, THU, FRI and SAT]
  7. Year (optional field)

举例:0 0 12 ? * WED     表示 每个星期三 下午12:00

 

 

 

 

你可能感兴趣的:(linux,quartz,sun)