@Component
public class ComputeTask {
每分钟触发一次
@Scheduled(cron = "0 * * * * ?")
public void test() {
}
}
spring task定时任务(个人笔记,非教程)
最新推荐文章于 2024-04-18 12:17:12 发布
该博客介绍了一个使用Spring框架编写的@Component注解类ComputeTask,其中包含一个每分钟触发一次的@Scheduled定时任务test()方法,探讨了在Spring中如何实现周期性的任务执行。
摘要由CSDN通过智能技术生成