摘要:
Quartz API中的关键接口 Job : Quartz提供的需实现的需调度器执行的任务组件接口,只有唯一接口: void execute(JobExecutionContext var1) throws JobExecutionException; job.class :实现了execute接口 阅读全文
摘要:
以Springboot为例介绍通过Quartz作业调度框架实现定时任务。 1、引用Quartz依赖 <!--引入Quartz--> <dependency> <groupId>org.quartz-scheduler</groupId> <artifactId>quartz</artifactId> 阅读全文