zoukankan      html  css  js  c++  java
  • springboot + @scheduled 多任务并发

    一、问题


    项目采用springboot搭建,想给方法添加@Scheduled注解,实现两个定时任务。可是运行发现,两个task并没有并发执行,而是执行完一个task才会执行另外一个。上代码:

    package com.autohome.contentplatform.tasks;
    
    import org.springframework.beans.factory.annotation.Configurable;
    import org.springframework.scheduling.annotation.EnableScheduling;
    import org.springframework.scheduling.annotation.Scheduled;
    import org.springframework.stereotype.Component;
    
    @Component
    @Configurable
    @EnableScheduling
    public class task1 {
         @Scheduled(cron = "0/5 * *  * * ? ")
         public void startSchedule() {
             System.out.println("===========1=>");
             try {
                 for(int i=1;i<=10;i++){
                     System.out.println("=1==>"+i);
                     Thread.sleep(1000);
                 }
             } catch (InterruptedException e) {
                 e.printStackTrace();
             }
         }
         @Scheduled(cron = "0/5 * *  * * ? ")
         public void startSchedule2() {
             for(int i=1;i<=10;i++){
                 System.out.println("=2==>"+i);
                 try {
                     Thread.sleep(1000);
                 } catch (InterruptedException e) {
                     e.printStackTrace();
                 }
             }
         }
    }
    

    运行发现任务没有并行执行。

    二、解决


    给类添加注解@EnableAsync,并给方法添加注解@Async。

    @Component
    @Configurable
    @EnableScheduling
    @EnableAsync
    public class DemoTask {
         @Async
         @Scheduled(cron = "0/5 * *  * * ? ")
         public void startSchedule() {
             System.out.println("===========1=>");
             try {
                 for(int i=1;i<=10;i++){
                     System.out.println("=1==>"+i);
                     Thread.sleep(1000);
                 }
             } catch (InterruptedException e) {
                 e.printStackTrace();
             }
         }
    
        @Async
         @Scheduled(cron = "0/5 * *  * * ? ")
         public void startSchedule2() {
             for(int i=1;i<=10;i++){
                 System.out.println("=2==>"+i);
                 try {
                     Thread.sleep(1000);
                 } catch (InterruptedException e) {
                     e.printStackTrace();
                 }
             }
         }
    }
    

    再次运行,发现两个任务可以并发执行了。

    三、参考资料:

    https://docs.spring.io/spring/docs/3.2.x/spring-framework-reference/html/scheduling.html

  • 相关阅读:
    【疯狂积累CSS】1:CSS基础
    阿里云服务器配置小程序用ssl证书
    阿里云服务器申请ssl安全证书
    PDO连接SQLServer2008(linux和windows)
    win7 PHP7.0的PDO扩展
    Apache+php+mysql win7 64位安装的几个注意事项
    PHP配置xdebug
    PHPExcel导出
    【设计模式】命令模式
    【maven学习笔记】 01 初见
  • 原文地址:https://www.cnblogs.com/janes/p/8085654.html
Copyright © 2011-2022 走看看