美文网首页
定时任务

定时任务

作者: 不和谐发光体 | 来源:发表于2018-11-01 16:42 被阅读0次

1、pom包配置

pom包里面只需要引入springboot starter包即可

            org.springframework.boot        spring-boot-starter                org.springframework.boot        spring-boot-starter-test        test                org.springframework.boot        spring-boot-devtools        true   

2、启动类启用定时

在启动类上面加上@EnableScheduling即可开启定时

@SpringBootApplication@EnableSchedulingpublicclassApplication{publicstaticvoidmain(String[] args){        SpringApplication.run(Application.class, args);    }}

3、创建定时任务实现类

@ComponentpublicclassSchedulerTask{privateintcount=0;@Scheduled(cron="*/6 * * * * ?")privatevoidprocess(){        System.out.println("this is scheduler task runing  "+(count++));    }}

fe7d59c7257408537911a79d343c6e3.png

3、cron表达式

常用: 秒、分、时、日、月、年

0 0 8,16,18 * * ? 每天上午8点,下午4点,6点

0 0 13 * * ? 每天下午1点触发

0 0/7 0 * * ? 每7分钟执行一次

*/5 * * * * ? 每隔5秒执行一次

更多表达式请见:https://blog.csdn.net/weixin_40426638/article/details/78959972

相关文章

  • 2019-07-31定时任务

    定时任务 定时任务实现方法 系统默认定时任务 用户自定义设置定时任务 定时任务配置文件 定时任务启动 定时任务样例...

  • 分布式定时调度-xxl-job

    一、定时任务概述 1.1 定时任务认识 1.1.1 什么是定时任务 定时任务是按照指定时间周期运行任务。使用场景为...

  • day 22 操作系统定时任务

    系统定时任务概念==生活中闹钟 系统定时任务实现方法: 实现定时任务配置: 定时任务如何进行设置 定时任务编写常见...

  • 7月30日 定时任务

    定时任务 代替人自动完成一些任务 定时任务实现的方法 定时任务软件:cronie定时任务软件:atd --- 设...

  • SpringBoot 定时任务

    1.如何定时任务 1.1 开启定时任务 1.2 @Scheduled(预定的)选择要定时执行的任务 == 定时在前...

  • crontab 定时任务

    查看当前用户的定时任务列表 创建(编辑)定时任务列表 定时任务格式 删除定时任务 注意 一定要设置crontab的...

  • 2019-10-14 定时任务方案

    定时任务方案 定时任务实现

  • Linux定时任务Crontab

    定时任务服务提供crontab命令来设定任务 定时任务命令: 定时任务服务提供crontab命令来设定任务 cro...

  • Android中 Handler延时 定时任务

    1.延时 2.定时任务,间隔固定时间执行某项任务 3.定时任务,间隔固定时间执行某项操作后关闭定时任务 参考:ht...

  • crondtab 定时任务

    编辑定时任务 crontab -e 查看定时任务 crontab -l 删除定时任务 crontab -r 如:*...

网友评论

      本文标题:定时任务

      本文链接:https://www.haomeiwen.com/subject/namxxqtx.html