1. 程式人生 > >@Scheduled註解cron的規則表達式

@Scheduled註解cron的規則表達式

通過 highlight clas div brush 分鐘 每分鐘 led 表達式

@Scheduled(cron = "0 0,1 * * * ? *") // 每分鐘-測試通過√
0 0 0 ? * MON // 每周一-測試通過√
0 0 0 1 * ? // 每月一日-測試通過√
0 0 0 1 3,6,9,12 ? // 每季度-測試通過√
0 0 0 1 1 ? // 每年一月一日-測試通過√

@Scheduled註解cron的規則表達式