使用Spring在Jalali日历中的特定日期(每月1号)运行计时器任务

时间:2019-07-05 05:31:23

标签: java spring spring-boot scheduled-tasks jalali-calendar

我们要求在Jalali日历(时间:00:00:00 AM)的每个月的1号准确地运行作业。 我们正在使用Spring框架的@Scheduled,如下所示:

@Scheduled(cron="0 0 0 1 1/1 *")
public void doSomething() {
    // something that should execute on 1st day every month @ 00:00
}

如您所知,它适用于公历,我如何在贾拉利日历中运行计划任务?

0 个答案:

没有答案