Spring boot 定时任务
程序员文章站
2022-05-01 12:42:22
...
demo测试通过,使用版本如下: spring boot版本:1.5.10.RELEASE java版本:1.8 maven版本:apache-maven-3.3.9
方式一:
新建一个java类,添加注解@Configuration和@EnableScheduling,开启调度任务。在类中新建一个定时的方法添加注解@Scheduled ,表明该方法是一个调度任务。cron表达式配置定时执行的规则
@Configuration
@EnableScheduling
public class SpringBootScheduledController {
/**
*每20秒执行一次
*/
@Scheduled(cron="0/20 * * * * ?")
public void methodScheduling(){
System.out.println("methodScheduling定时任务启动了");
}
}
方法二:
在启动类上添加注解@EnableScheduling,开启调度任务。创建一个任务类添加注解@Component,类中方法添加注解@Scheduled,表明该方法是一个调度任务。
@SpringBootApplication
@EnableScheduling
public class SpringbootschedulingApplication {
public static void main(String[] args) {
SpringApplication.run(SpringbootschedulingApplication.class, args);
}
}
/**
* Created by fangzy on 2018/2/9 17:33
*/
@Component
public class ScheduledController {
/**
*每20秒执行一次
*/
@Scheduled(cron="0/10 * * * * ?")
public void methodScheduling(){
System.out.println("methodScheduling定时任务启动了");
}
}
- 定时规则参考:
@Scheduled(cron=”0/10 * * * * ?”)//通过cron表达式定义执行规则, 每隔十秒执行1次 @Scheduled(fixedRate=1000)//上次开始执行时间点之后1秒再执行
@Scheduled(fixedDelay=1000)//上次执行完毕时间点之后1秒再执行 @Scheduled(initialDelay=1000,fixedRate=1000)//第一次延迟1秒后执行,之后按fixedRate的规则每1秒执行1次
上一篇: css设置height 100%
推荐阅读
-
Sql server数据库定时任务,数据库作业,数据库定时任务
-
linux实现php定时执行cron任务详解_PHP
-
PHP定时执行任务/Cron Job_PHP教程
-
crontab定时任务配置记录,crontab任务_PHP教程
-
使用Spring Boot和AspectJ实现方法跟踪基础结构
-
C#/.NET/.NET Core定时任务调度的方法或者组件有哪些--Timer,FluentScheduler还是...
-
Linux crontab定时执行任务 命令格式与详细例子
-
php定时任务: PHP定时执行任务的实现
-
PHP得到某段时间区间的时间戳 php定时任务
-
PHP实现定时执行任务的方法,php实现任务_PHP教程