Springboot 定时任务调度器
【摘要】
Springboot 定时任务调度器
1.创建任务调度组件
@Component
/**
* 启用定时器
*/
@EnableScheduling
@Slf4j
public class Ti...
Springboot 定时任务调度器
1.创建任务调度组件
@Component
/**
* 启用定时器
*/
@EnableScheduling
@Slf4j
public class TimerConfig {
/**
* 使用cron 创建
*/
@Scheduled(cron = "0 0/1 * * * *")
public void redisTimer() throws Exception {
// 一分钟运行一次
if (log.isInfoEnabled(
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
文章来源: wretchant.blog.csdn.net,作者:简简单单OnlineZuozuo,版权归原作者所有,如需转载,请联系作者。
原文链接:wretchant.blog.csdn.net/article/details/79789173
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)