我想每天执行两次此作业:
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@Component
public class AppScheduler {
@Scheduled(fixedRate = 10000)
public void myScheduler() {
System.out.println("Test print");
}
}
第一次是11:00,第二次是14:00。
是否可以配置这些时间?
答案 0 :(得分:4)
答案 1 :(得分:1)
@Scheduled(cron = "0 0 11,14 * * *")
这是
At second :00, at minute :00, at 11am and 14pm, of every day
您可以在此处https://www.freeformatter.com/cron-expression-generator-quartz.html
生成它答案 2 :(得分:1)
您可以使用cron表达式:
@Scheduled(cron = "0 0 11,14 * * *")