ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

Java - SpringBoot - 2.x - 任务管理 - 定时 - 使用Spring 的 Scheduled实现定时任务

2022-04-09 10:04:08  阅读:197  来源: 互联网

标签:Scheduled Java void SimpleDateFormat 任务 定时 public


参考

特点

  • 默认单线程执行任务,多任务阻塞运行

使用

1、启动类使用@EnableScheduling注解开启定时任务

@SpringBootApplication
@EnableScheduling
public class ScheduledTest {
    public static void main(String[] args) {
        SpringApplication.run(ScheduledTest.class);
    }
}

2.2、添加定时任务(2种方式)

方式一:使用@Scheduled注解

@Slf4j
@Component
public class ScheduledTasks {

    private static final SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");

    @Scheduled(cron = "0/2 * * * * ? ")
    public void task1() {
        log.info("定时任务1,每2秒执行一次,time: {}", dateFormat.format(new Date()) + " 线程:" + Thread.currentThread().getName());
    }
}

方式二:实现SchedulingConfigurer接口

@Configuration
@Component
@Slf4j
public class TestTask implements SchedulingConfigurer {

    private static final SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");

    @Override
    public void configureTasks(ScheduledTaskRegistrar taskRegistrar) {
        taskRegistrar.addFixedDelayTask(this::index2, 1000);
    }

    public void index2() {
        log.info("定时任务2,每1秒执行一次,time:" + dateFormat.format(new Date()) + " 线程:" + Thread.currentThread().getName());
    }
}

思考与进阶

多处部署的问题:每处都会执行一次定时任务。
考虑使用支持分布式的定时任务实现。

标签:Scheduled,Java,void,SimpleDateFormat,任务,定时,public
来源: https://www.cnblogs.com/zxaben/p/16120869.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有