@Scheduled(fixedRate = IsAYearPossible)

时间:2015-12-02 12:51:57

标签: spring

一个非常简单的问题:

是一年的固定费率
  

org.springframework.scheduling.annotation.Scheduled?

时间表应始终在01.01.xxxx 00:00

运行

1 个答案:

答案 0 :(得分:3)

不是fixed rate,而是cron,但是,有可能。

@Scheduled(cron="0 0 0 1 1 ?")

含义(按顺序):

  • 0 - > 0秒
  • 0 - > 0分钟
  • 0 - > 0小时
  • 1 - >
  • 1 - >一年中的第一个月
  • ? - >无论一周中哪一天