标签: java spring spring-boot scheduled-tasks jalali-calendar
我们要求在Jalali日历(时间:00:00:00 AM)的每个月的1号准确地运行作业。 我们正在使用Spring框架的@Scheduled,如下所示:
@Scheduled
@Scheduled(cron="0 0 0 1 1/1 *") public void doSomething() { // something that should execute on 1st day every month @ 00:00 }
如您所知,它适用于公历,我如何在贾拉利日历中运行计划任务?