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");

}

}

你可能感兴趣的:(java,spring,boot,java,spring)