spring的task任务中,我想每周一上午9点和下午5点各执行一次,cron表达式怎么写?

如题所述

可以写2个task, 需要注意的是表达式的时的值的取值范围是0-23,
<task:scheduled ref="" method="" cron="0 0 9 ? * MON"/>
<task:scheduled ref="" method="" cron="0 0 17 ? * MON"/>
温馨提示:答案为网友推荐,仅供参考
第1个回答  2020-07-08
0 0 9,17 * * ?
相似回答