美文网首页
Spring Boot 实现定时任务的4种方式

Spring Boot 实现定时任务的4种方式

作者: Ukuleler | 来源:发表于2019-11-18 17:22 被阅读0次

    内容参考来自"我是程序汪"公众号一篇文章《Spring Boot 实现定时任务的 4 种方式》。如果原作者觉得此文章不得转载,请联系我,本人立即删除。

    定时任务实现的几种方式:

    Timer:这是java自带的java.util.Timer类,这个类允许你调度一个java.util.TimerTask任务。使用这种方式可以让你的程序按照某一个频度执行,但不能在指定时间运行。一般用的较少。
    ScheduledExecutorService:也jdk自带的一个类;是基于线程池设计的定时任务类,每个调度任务都会分配到线程池中的一个线程去执行,也就是说,任务是并发执行,互不影响。
    Spring Task:Spring3.0以后自带的task,可以将它看成一个轻量级的Quartz,而且使用起来比Quartz简单许多。
    Quartz:这是一个功能比较强大的的调度器,可以让你的程序在指定时间执行,也可以按照某一个频度执行,配置起来稍显复杂。

    使用Timer

    这个目前在项目中用的较少,直接贴demo代码。具体的介绍可以查看api

    public class TestTimer {
    
       public static void main(String[] args) {
    
           TimerTask timerTask = new TimerTask() {
               @Override
               public void run() {
                   System.out.println("task  run:"+ new Date());
               }
    
           };
    
           Timer timer = new Timer();
    
           //安排指定的任务在指定的时间开始进行重复的固定延迟执行。这里是每3秒执行一次
           timer.schedule(timerTask,10,3000);
       }
    
    }
    

    使用ScheduledExecutorService

    该方法跟Timer类似,直接看demo:

    public class TestScheduledExecutorService {
    
       public static void main(String[] args) {
    
           ScheduledExecutorService service = Executors.newSingleThreadScheduledExecutor();
    
           // 参数:1、任务体 2、首次执行的延时时间
           //      3、任务执行间隔 4、间隔时间单位
           service.scheduleAtFixedRate(()->System.out.println("task ScheduledExecutorService "+new Date()), 0, 3, TimeUnit.SECONDS);
    
       }
    
    }
    

    使用Spring Task

    简单的定时任务

    创建任务类:

    
    @Slf4j
    
    @Component
    
    public class ScheduledService {
    
       @Scheduled(cron = "0/5 * * * * *")
       public void scheduled(){
           log.info("=====>>>>>使用cron  {}",System.currentTimeMillis());
       }
    
       @Scheduled(fixedRate = 5000)
       public void scheduled1() {
           log.info("=====>>>>>使用fixedRate{}", System.currentTimeMillis());
       }
    
       @Scheduled(fixedDelay = 5000)
       public void scheduled2() {
           log.info("=====>>>>>fixedDelay{}",System.currentTimeMillis());
       }
    
    }
    

    然后在主类上使用@EnableScheduling注解开启对定时任务的支持,然后启动项目即可运行。

    执行时间的配置

    在上面的定时任务中,我们在方法上使用@Scheduled注解来设置任务的执行时间,并且使用三种属性配置方式:

    fixedRate:定义一个按一定频率执行的定时任务

    fixedDelay:定义一个按一定频率执行的定时任务,与上面不同的是,改属性可以配合initialDelay, 定义该任务延迟执行时间。

    cron:通过表达式来配置任务执行时间
    关于cron,可自行在网络上查阅相关资料。或者直接通过 在线生成cron表达式

    多线程执行

    当然如果只有一个定时任务,这样做肯定没问题,当定时任务增多,如果一个任务卡死,会导致其他任务也无法执行。或者我们也可以用多线程的方式执行。
    在传统的Spring项目中,我们可以在xml配置文件添加task的配置,而在SpringBoot项目中一般使用java代码配置类的方式添加配置,所以新建一个AsyncConfig类。

    @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;
       }
    
    }
    

    @Configuration:表明该类是一个配置类
    @EnableAsync:开启异步事件的支持
    然后在定时任务的类或者方法上添加@Async 。最后重启项目,每一个任务都是在不同的线程中。

    整合Quartz

    添加依赖

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-quartz</artifactId>
    </dependency>
    

    创建任务类TestQuartz,该类主要是继承了QuartzJobBean

    public class TestQuartz extends QuartzJobBean {
    
        /**
         * 执行定时任务
         * @param jobExecutionContext
         * @throws JobExecutionException
         */
    
        @Override
        protected void executeInternal(JobExecutionContext jobExecutionContext) throws JobExecutionException {
    
            System.out.println("quartz task "+new Date());
    
        }
    
    }
    

    创建配置类QuartzConfig

    @Configuration
    public class QuartzConfig {
    
        @Bean
        public JobDetail teatQuartzDetail(){
    
            return JobBuilder.newJob(TestQuartz.class).withIdentity("testQuartz").storeDurably().build();
    
        }
    
        @Bean
        public Trigger testQuartzTrigger(){
    
            SimpleScheduleBuilder scheduleBuilder = SimpleScheduleBuilder.simpleSchedule()
                    .withIntervalInSeconds(10)  //设置时间周期单位秒
                    .repeatForever();
            return TriggerBuilder.newTrigger().forJob(teatQuartzDetail())
    
                    .withIdentity("testQuartz")
                    .withSchedule(scheduleBuilder)
                    .build();
    
        }
    
    }
    

    上面都是简单的介绍了关于SpringBoot定时任务的处理,直接使用SpringTask注解的方式应该是最方便的,而使用Quartz从2.0开始也变得很方便。对于这两种方式,应该说各有长处吧,按需选择。

    相关文章

      网友评论

          本文标题:Spring Boot 实现定时任务的4种方式

          本文链接:https://www.haomeiwen.com/subject/ypubictx.html