gpt4 book ai didi

在应用程序启动后和午夜后运行的 Spring 调度程序

转载 作者:行者123 更新时间:2023-12-04 01:26:50 25 4
gpt4 key购买 nike

如何描述在应用程序启动后和 00:00 之后运行的 Spring 调度程序?

最佳答案

我会用两个单独的结构来做到这一点。

对于应用程序启动后,使用 @PostConstuct ,并在每晚午夜使用 @Scheduledcron值集。两者都应用于一个方法。

public class MyClass {
@PostConstruct
public void onStartup() {
doWork();
}

@Scheduled(cron="0 0 0 * * ?")
public void onSchedule() {
doWork();
}

public void doWork() {
// your work required on startup and at midnight
}
}

关于在应用程序启动后和午夜后运行的 Spring 调度程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16377627/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com