在春天使用计划任务(@schedule)

时间:2016-03-09 10:51:07

标签: spring spring-boot scheduled-tasks

你好我正在做一个cron工作,并希望安排任务每2分钟运行一次,而不是2分钟,它开始大约1分20秒。这是我有的cron时间表

  @scheduled
  (cron="${followed_forum_task_
  crown_expression} ")

然后在我的application.property文件中

  followed_forum_task_
  crown_expression = 0 0/2 * * * ?

1 个答案:

答案 0 :(得分:0)

您可以使用

@Scheduled(fixedDelay = 0, fixedRate = 2*1000*60)

而不是cron表达。