Cron 表达式 星期建议使用 MON 等单词缩写
在spring提供的定时任务框架中
@Scheduled(cron = "0 0 16 ? * 1")
1
指周一
但, 其他cron工具中, 1
指周日
区别就在于, spring的一周从周一
开始, 而其他工具从周日
开始
判断可能是spring对时区做了判断, 动态切换
但暂未验证
而使用 MON 表示 周一, 语义就很明确了
原文地址:https://cloud.tencent.com/developer/article/2033197
你可能想看: