我有以下春季工作每天跑两次请检查我的以下cron express是否正确每天触发两次。
@Scheduled(cron = "0 0 24/12 * ? *")
public void demoService()
{
}
我尝试了上面的表达式,但这不起作用。这有什么不对?
答案 0 :(得分:2)
您可以使用
0 0 0/12 * *?
这意味着每12个小时。
@Scheduled(cron = "0 0 0/12 * * ?")
public void demoService()
{
}
希望它可以提供帮助。