jeesite 定时任务 或者springboot 执行定时任务
Posted qq_26800875
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jeesite 定时任务 或者springboot 执行定时任务相关的知识,希望对你有一定的参考价值。
网上乱七八糟的代码好费劲,直接使用springboot 的注解就可以了
(315条消息) Spring boot开启定时任务的三种方式_springboot定时任务_我啥都会的博客-CSDN博客
然后,在启动类中用注解@EnableScheduling进行标注,表明此类 存在定时任务。
在定时执行的方法之上添加注解
@Scheduled(cron ="*/6 * * * * ?")。
@EnableScheduling
public class Task1
@Scheduled(cron ="*/1 * * * * ?")
public void sayWord()
System.out.println("world");
就这么写就可以,具体定时任务的语法杂用自行百度那个 cron语法 或者
@Component
@EnableScheduling //开启定时任务
public class ScheduleTask
//容器启动后,延迟10秒后再执行一次定时器,以后每10秒再执行一次该定时器。
@Scheduled(initialDelay = 10000, fixedRate = 10000)
private void myTasks3()
System.out.println("我是一个定时任务3");
以上是关于jeesite 定时任务 或者springboot 执行定时任务的主要内容,如果未能解决你的问题,请参考以下文章