SpringBoot基于数据库的定时任务统一管理的实现

所属分类: 软件编程 / java 阅读数: 63
收藏 0 赞 0 分享

定时任务1

import lombok.extern.slf4j.Slf4j;

/**
 * @author Created by niugang on 2019/12/24/15:29
 */
@Slf4j
public class TaskTest {


  public void task1() {
    log.info("反射调用测试[一]类");
  }
}

定时任务2

import lombok.extern.slf4j.Slf4j;

/**
 * @author Created by niugang on 2019/12/24/15:54
 */
@Slf4j
public class TaskTest2 {
  public void task2() {
    log.info("反射调用测试[二]类");
  }
}

配置类

import lombok.Data;
import lombok.extern.slf4j.Slf4j;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.SchedulingConfigurer;
import org.springframework.scheduling.config.CronTask;
import org.springframework.scheduling.config.ScheduledTask;
import org.springframework.scheduling.config.ScheduledTaskRegistrar;

import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;


/**
 * @author Created by niugang on 2019/12/24/15:19
 */
@Configuration
@EnableScheduling
@Slf4j
public class CompleteScheduleConfig implements SchedulingConfigurer {

  private static List<TaskRecord> taskRecordList = new ArrayList<>();


  /*
   *模拟数据库存储
   */
  static {
    TaskRecord taskRecord = new TaskRecord();
    taskRecord.setExecuteMehod("task1");
    taskRecord.setClassPath("com.example.demo.pojo.TaskTest");
    taskRecord.setCron("0/5 * * * * ?");
    taskRecordList.add(taskRecord);

    TaskRecord taskRecord2 = new TaskRecord();
    taskRecord2.setExecuteMehod("task2");
    taskRecord2.setClassPath("com.example.demo.pojo.TaskTest2");
    taskRecord2.setCron("0/10 * * * * ?");
    taskRecordList.add(taskRecord2);
  }


  @Override
  public void configureTasks(ScheduledTaskRegistrar taskRegistrar) {
    // taskRegistrar.addCronTask(() -> log.info("执行定时任务,{}", LocalDateTime.now()), "0/5 * * * * ?");
/*    taskRegistrar.addCronTask(new Runnable() {
      @Override
      public void run() {
        try {
          Class<?> aClass = Class.forName("com.example.demo.pojo.TaskTest");
          Object o = aClass.newInstance();
          Method[] declaredMethods = aClass.getDeclaredMethods();
          for (Method declaredMethod : declaredMethods) {
            declaredMethod.invoke(o);
            // log.info("方法名称:{}",declaredMethod.getName());
          }
        } catch (Exception e) {
          e.printStackTrace();
        }
      }
    }, "0/5 * * * * ?");*/

    for (TaskRecord taskRecord : taskRecordList) {
      String classPath = taskRecord.getClassPath();
      String cron = taskRecord.getCron();
      String executeMehod = taskRecord.getExecuteMehod();
      Runnable runnable = () -> {
        Class<?> aClass;
        try {
          aClass = Class.forName(classPath);
          Object o = aClass.newInstance();
          Method[] declaredMethods = aClass.getDeclaredMethods();
          for (Method declaredMethod : declaredMethods) {
            if (declaredMethod.getName().equals(executeMehod)) {
              /// log.info("方法名称:{}",declaredMethod.getName());
              declaredMethod.invoke(o);
            }
          }
        } catch (Exception e1) {
          e1.printStackTrace();
        }
      };
      CronTask cronTask = new CronTask(runnable, cron);
      ScheduledTask scheduledTask = taskRegistrar.scheduleCronTask(cronTask);
      //scheduledTask.cancel(); 取消定时任务

    }


  }


  @Data
  private static class TaskRecord {

    private String classPath;

    private String executeMehod;

    private String cron;

    //可以在增加一个type 执行其他类型的定时任务
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

更多精彩内容其他人还在看

Java实现一个简单的文件上传案例示例代码

这篇文章主要介绍了Java实现一个简单的文件上传案例,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

详解在spring中使用JdbcTemplate操作数据库的几种方式

这篇文章主要介绍了详解在spring中使用JdbcTemplate操作数据库的几种方式,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

java中的switch case语句使用详解

这篇文章主要介绍了java中的switch case语句使用详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

深入理解Java 线程池

这篇文章主要介绍了Java 线程池的相关资料,文中讲解非常细致,帮助大家更好的理解和学习,感兴趣的朋友可以了解下
收藏 0 赞 0 分享

详解mybatis #{}和${}的区别、传参、基本语法

这篇文章主要介绍了mybatis #{}和${}的区别、传参、基本语法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

MyBatis 中 ${}和 #{}的正确使用方法(千万不要乱用)

这篇文章主要介绍了MyBatis 中 ${}和 #{}的正确使用方法,本文给大家提到了MyBatis 中 ${}和 #{}的区别,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

详解Mybatis中的 ${} 和 #{}区别与用法

这篇文章主要介绍了Mybatis中的 ${} 和 #{}区别与用法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

Maven安装过程图文详解

这篇文章主要介绍了Maven安装过程,本文通过图文并茂的形式给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧
收藏 0 赞 0 分享

SpringBoot登录拦截配置详解(实测可用)

这篇文章主要介绍了SpringBoot登录拦截配置详解(实测可用),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

JAVA 内存溢出案例汇总

这篇文章主要介绍了JAVA 内存溢出案例的汇总,文中讲解非常细致,帮助各位工作学习时避免内存溢出,感兴趣的朋友可以了解下
收藏 0 赞 0 分享
查看更多