时间:2021-05-19
首先在启动类上添加注解:@EnableScheduling 来开启定时任务
@SpringBootApplication@EnableSchedulingpublic class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); }}然后新建定时任务类
@Componentpublic class QuartzService { /** * 通过时间表达式执行定时任务 */ @Scheduled(cron = "0 0/1 * * * ?") public void timerToNow(){ System.out.println("now time:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())); } /** *启动时间点之后 X毫秒秒执行一次 */ @Scheduled(fixedRate = 5000) public void timerToZZP(){ System.out.println("fixedRate:" + new Random().nextLong() + new SimpleDateFormat("HH:mm:ss").format(new Date())); } /** * 结束时间点之后 每X毫秒执行一次 */ @Scheduled(fixedDelay = 10000) public void timerToReportCount(){ System.out.println("fixedDelay:" + new Random().nextLong() + new SimpleDateFormat("HH:mm:ss").format(new Date())); } /** * 第一次延迟 X毫秒执行,之后按照fixedRate的规则每X毫秒执行 */ @Scheduled(initialDelay = 10000,fixedRate = 6000) public void timerToReport(){ System.out.println("initialDelay:" + new Random().nextLong() + new SimpleDateFormat("HH:mm:ss").format(new Date())); }}启动项目,定时任务开始
总结
以上所述是小编给大家介绍的springBoot定时任务处理类的实现代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
SpringBoot与Quartz集成实现分布式定时任务集群直接贴代码POM
刚刚看了下SpringBoot实现定时任务的文章,感觉还不错。SpringBoot使用Spring自带的Schedule来实现定时任务变得非常简单和方便。在这里
本文介绍在SpringBoot中如何使用定时任务,使用非常简单,就不做过多说明了。下面是代码类:packageorg.springboot.sample.con
前言好几天没写了,工作有点忙,最近工作刚好做一个定时任务统计的,所以就将springboot如何创建定时任务整理了一下。总的来说,springboot创建定时任
1.定时任务实现方式定时任务实现方式:Java自带的java.util.Timer类,这个类允许你调度一个java.util.TimerTask任务。使用这种方