SpringBoot定时任务-多线程教程

SpringBoot定时任务-多线程教程

先看下最后执行输出的多线程定时任务的效果如下

2020-08-25 15:02:30.023  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>使用cron  1598338950023
2020-08-25 15:02:32.383  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>使用fixedRate1598338952383
2020-08-25 15:02:32.383  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>fixedDelay1598338952383
2020-08-25 15:02:35.003  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>使用cron  1598338955003
2020-08-25 15:02:37.383  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>使用fixedRate1598338957383
2020-08-25 15:02:37.403  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>fixedDelay1598338957403
2020-08-25 15:02:40.003  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>使用cron  1598338960003
2020-08-25 15:02:42.382  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>使用fixedRate1598338962382
2020-08-25 15:02:42.423  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>fixedDelay1598338962423
2020-08-25 15:02:45.001  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>使用cron  1598338965001
2020-08-25 15:02:47.373  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>使用fixedRate1598338967373
2020-08-25 15:02:47.433  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>fixedDelay1598338967433

看完上面的输出效果后 大家是不是已经迫不及待的想要开始了! 好了,我也不给大家墨迹了。直接上干货。
先创建一个SpringBoot项目 在pom.xml里导入所需要的依赖

 <dependencies>
        <!--web模块-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <!--定时器-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-quartz</artifactId>
        </dependency>
        <!--mybatis-->
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>1.3.2</version>
        </dependency>
        <!--mysql-->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>
        <!--druid 数据库连接池-->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid-spring-boot-starter</artifactId>
            <version>1.1.10</version>
        </dependency>
        <!--lombok 实体类工具-->
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <!--StringUitls工具-->
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.0</version>
        </dependency>
        <!--定时器-->
        <dependency>
            <groupId>org.quartz-scheduler</groupId>
            <artifactId>quartz</artifactId>
            <version>2.3.0</version>
            <exclusions>
                <exclusion>
                    <groupId>com.mchange</groupId>
                    <artifactId>c3p0</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

        <!--分页插件 4.1.5 版本以上修复 selectProvider不兼容问题-->
        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper</artifactId>
            <version>4.1.5</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

1.创建一个任务类

package com.ytzl.springboot_schedule.config_dingshiqi;

import lombok.extern.slf4j.Slf4j;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

/*任务类*/
@Slf4j
@Component //通常是通过类路径扫描来自动侦测以及自动装配到Spring容器中
  public class ScheduledService {
      @Scheduled(cron = "0/5 * * * * *")// cron:通过表达式来配置任务执行时间
      public void scheduled(){
                 log.info("=====>>>>>使用cron  {}",System.currentTimeMillis());
             }
       
      @Scheduled(fixedRate = 5000)//定义一个按一定频率执行的定时任务
      public void scheduled1() {
                 log.info("=====>>>>>使用fixedRate{}", System.currentTimeMillis());
             }
      
     @Scheduled(fixedDelay = 5000) //定义一个按一定频率执行的定时任务,与上面不同的是,改属性可以配合initialDelay, 定义该任务延迟执行时间。
     public void scheduled2() {
                 log.info("=====>>>>>fixedDelay{}",System.currentTimeMillis());
             }
 }

注意: 需要在定时任务的类上加上注释:@Component,在具体的定时任务方法上加上注释@Scheduled即可启动该定时任务。
一个cron表达式有至少6个(也可能7个)有空格分隔的时间元素。按顺序依次为:
秒(0~59)
分钟(0~59)
3 小时(0~23)
4 天(0~31)
5 月(0~11)
6 星期(1~7 1=SUN 或 SUN,MON,TUE,WED,THU,FRI,SAT)
年份(1970-2099)
复制代码
其中每个元素可以是一个值(如6),一个连续区间(9-12),一个间隔时间(8-18/4)(/表示每隔4小时),一个列表(1,3,5),通配符。由于”月份中的日期”和”星期中的日期”这两个元素互斥的,必须要对其中一个设置。配置实例:
每隔5秒执行一次:/5 * * * ?
每隔1分钟执行一次:0 /1 * * ?
0 0 10,14,16 * * ? 每天上午10点,下午2点,4点

0 0/30 9-17 * * ? 朝九晚五工作时间内每半小时

0 0 12 ? * WED 表示每个星期三中午12点
“0 0 12 * * ?” 每天中午12点触发
“0 15 10 ? * *” 每天上午10:15触发
“0 15 10 * * ?” 每天上午10:15触发
“0 15 10 * * ? *” 每天上午10:15触发
“0 15 10 * * ? 2005” 2005年的每天上午10:15触发
“0 * 14 * * ?” 在每天下午2点到下午2:59期间的每1分钟触发
“0 0/5 14 * * ?” 在每天下午2点到下午2:55期间的每5分钟触发
“0 0/5 14,18 * * ?” 在每天下午2点到2:55期间和下午6点到6:55期间的每5分钟触发
“0 0-5 14 * * ?” 在每天下午2点到下午2:05期间的每1分钟触发
“0 10,44 14 ? 3 WED” 每年三月的星期三的下午2:10和2:44触发
“0 15 10 ? * MON-FRI” 周一至周五的上午10:15触发
“0 15 10 15 * ?” 每月15日上午10:15触发
“0 15 10 L * ?” 每月最后一日的上午10:15触发
“0 15 10 ? * 6L” 每月的最后一个星期五上午10:15触发
“0 15 10 ? * 6L 2002-2005” 2002年至2005年的每月的最后一个星期五上午10:15触发
“0 15 10 ? * 6#3” 每月的第三个星期五上午10:15触发

2.创建一个配置类

package com.ytzl.springboot_schedule.config_dingshiqi;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;

import java.util.concurrent.Executor;

 @Configuration //表明该类是一个配置类
 @EnableAsync //开启异步事件的支持
  public class AsyncConfig {
  /*
  此处成员变量应该使用@Value从配置中读取
  */
  private int corePoolSize = 10;
  private int maxPoolSize = 200;
  private int queueCapacity = 10;
 @Bean
 public Executor taskExecutor() {
         ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
         executor.setCorePoolSize(corePoolSize);
         executor.setMaxPoolSize(maxPoolSize);
         executor.setQueueCapacity(queueCapacity);
         executor.initialize();
         return executor;
         }
 }

3.创建一个启动类

package com.ytzl.springboot_schedule.config_dingshiqi;

import org.springframework.boot.SpringApplication;
  import org.springframework.boot.autoconfigure.SpringBootApplication;
  import org.springframework.scheduling.annotation.EnableScheduling;

  /*
  *启动类
  * */
  @SpringBootApplication //开启定时
  @EnableScheduling //@EnableScheduling注解开启对定时任务的支持,然后启动项目创建任务类:
  public class SpringBootScheduledApplication {

              public static void main(String[] args) {
                 SpringApplication.run(SpringBootScheduledApplication.class, args);
              }
 }

以上步骤全部没问题就可以启动了。
启动之后的效果图 如下

2020-08-25 15:02:30.023  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>使用cron  1598338950023
2020-08-25 15:02:32.383  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>使用fixedRate1598338952383
2020-08-25 15:02:32.383  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>fixedDelay1598338952383
2020-08-25 15:02:35.003  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>使用cron  1598338955003
2020-08-25 15:02:37.383  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>使用fixedRate1598338957383
2020-08-25 15:02:37.403  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>fixedDelay1598338957403
2020-08-25 15:02:40.003  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>使用cron  1598338960003
2020-08-25 15:02:42.382  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>使用fixedRate1598338962382
2020-08-25 15:02:42.423  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>fixedDelay1598338962423
2020-08-25 15:02:45.001  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>使用cron  1598338965001
2020-08-25 15:02:47.373  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>使用fixedRate1598338967373
2020-08-25 15:02:47.433  INFO 11976 --- [   scheduling-1] c.y.s.config_dingshiqi.ScheduledService  : =====>>>>>fixedDelay1598338967433

你可能感兴趣的:(spring,boot)