博客
关于我
springboot任务之定时任务
阅读量:485 次
发布时间:2019-03-06

本文共 668 字,大约阅读时间需要 2 分钟。

 

在启动入口上加上@EnableScheduling ,在需要定时的方法上加上@Scheduled注解

比如:

package com.gong.spingbootes.service;import org.springframework.scheduling.annotation.Scheduled;import org.springframework.stereotype.Service;@Servicepublic class ScheduledServcie {    //秒、分、时、日、月、周几    @Scheduled(cron = "0 * * * * MON-FRI")    public void hello(){        System.out.println("hell...");    }}

@Scheduled注解中主要参数为cron,里面有六个值,分别对应着注释中的。上述代码意思是:星期一到星期五的整秒执行方法一次。

启动服务器,当时间是到13:22:00时,在控制台会输出:

在比如:

@Scheduled(cron="0,1,2,3,4 * * * * MON-FRI") :周一到周五的第0,1,2,3,4秒都会运行

@Scheduled(cron="0-4 * * * * MON-FRI "):周一到周五的第0,1,2,3,4秒都会运行

@Scheduled(cron="0/4 * * * * MON-FRI"):周一到周五从第0秒开始,每隔4秒执行一次

具体的可以参照上述表格。

 

转载地址:http://ctsbz.baihongyu.com/

你可能感兴趣的文章
Nginx模块 ngx_http_limit_conn_module 限制连接数
查看>>
Nginx模块 ngx_http_limit_req_module 限制请求速率
查看>>
nginx次级域名部署dva静态项目!
查看>>
nginx添加允许跨域header头
查看>>
nginx添加模块与https支持
查看>>
nginx状态监控
查看>>
Nginx用户认证
查看>>
Nginx的location匹配规则的关键问题详解
查看>>
Nginx的Rewrite正则表达式,匹配非某单词
查看>>
Vue中前端加密使用RSA加密下的JSEncrypt防止明文暴露
查看>>
Nginx的使用总结(一)
查看>>
Nginx的使用总结(三)
查看>>
Nginx的使用总结(二)
查看>>
Nginx的使用总结(四)
查看>>
Nginx的可视化神器nginx-gui的下载配置和使用
查看>>
nginx的平滑升级方法:
查看>>
Nginx的是什么?干什么用的?
查看>>
nginx的正向代理和反向代理
查看>>
Nginx的端口修改问题
查看>>
Nginx的配置文件位置以及组成部分结构讲解
查看>>