每天春天cron表达两次

时间:2016-10-03 13:28:01

标签: spring cron

我有以下春季工作每天跑两次请检查我的以下cron express是否正确每天触发两次。

@Scheduled(cron = "0 0 24/12 * ? *")
public void demoService()
{

}

我尝试了上面的表达式,但这不起作用。这有什么不对?

1 个答案:

答案 0 :(得分:2)

您可以使用

  

0 0 0/12 * *?

这意味着每12个小时。

@Scheduled(cron = "0 0 0/12 * * ?")
public void demoService()
{

}

希望它可以提供帮助。