参考文章:https://blog.csdn.net/sinianliushui/article/details/78841713

参考文章: https://blog.csdn.net/hao7030187/article/details/79077464

参考文章:https://www.cnblogs.com/domi22/p/9418433.html

springboot的SchedulerTask相对Quartz来说,简单方便,可试用于小型的job处理。

因没法持久化因此不支持分布式部署,和动态数据源配置。

如果要

一、简易配置

1. 开启定时任务,在启动类添加以下注解

@EnableScheduling

2. 创建并发配置,并发线程

@Component
public class SchedulerConfig implements SchedulingConfigurer { /**
* 设置定时任务
* @param scheduledTaskRegistrar
*/
@Override
public void configureTasks(ScheduledTaskRegistrar scheduledTaskRegistrar) {
scheduledTaskRegistrar.setScheduler(Executors.newScheduledThreadPool());
}
}

3. 创建scheduler,以下是没5秒触发一次,cron表达式有cron在线生成器可以用

@Component
@Slf4j
public class SchedulerTask { @Scheduled(cron="0/5 * * * * ? ")
public void testTask(){
DateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
log.debug(Thread.currentThread() + " " + sdf.format(new Date()));
}
    @Scheduled(cron="0/5 * * * * ? ")
public void test2Task(){
DateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
log.debug(Thread.currentThread() + " " + sdf.format(new Date()));
}
}

二、分开配置

如下例子,如果只有一个Bean,名字为taskScheduler,或者方法名为taskScheduler则会作为自动的Scheduler。使用 @Scheduled即对应的是此TaskScheduler。

参见文章:  https://blog.csdn.net/sinianliushui/article/details/78841713

/**
* description:
* 定时任务
* @Autor:DennyZhao
* @Date:2019/2/15
* @Version: 1.0.0
*/
@Component
@EnableScheduling
public class SchedulerConfig {
/** task相关的属性文件 **/
@Autowired
private TaskProperties taskProperties; /**
* 设备组织用Job
* @return
*/
@Bean("DeviceJob")
public TaskScheduler initDeviceOrgTask(){
ThreadPoolTaskScheduler scheduler = new ThreadPoolTaskScheduler();
//线程池大小
scheduler.setPoolSize(taskProperties.getDeviceThreadCount());
//线程名字前缀
scheduler.setThreadNamePrefix("taskThread-deviceTask: ");
scheduler.initialize();
Trigger trigger = new CronTrigger(taskProperties.getDeviceOrgCron());
scheduler.schedule(new DeviceOrgTask(), trigger);
return scheduler;
} /**
* Jpush用Job
* @return
*/
@Bean("JpushJob")
public TaskScheduler initJpushTask(){
ThreadPoolTaskScheduler scheduler = new ThreadPoolTaskScheduler();
//线程池大小
scheduler.setPoolSize(taskProperties.getJpushThreadCount());
//线程名字前缀
scheduler.setThreadNamePrefix("taskThread-jpushTask: ");
scheduler.initialize();
Trigger trigger = new CronTrigger(taskProperties.getJpushReportCron());
scheduler.schedule(new JpushReportTask(), trigger);
return scheduler;
}
}

TaskPropertis

/**
* description:
* JPUSH执行任务相关参数
*
* @Autor:DennyZhao
* @Date:2019/2/15
* @Version: 1.0.0
*/
@Component
@PropertySource("classpath:task-config.properties")
@ConfigurationProperties(prefix="task")
@Data
public class TaskProperties { /** 极光推送appKey **/
private String jpushAppKey;
/** 极光推送secretKey **/
private String jpushSecretKey; /** 设备JOB的线程数 **/
private int deviceThreadCount;
/** 设备组织Cron **/
private String deviceOrgCron;
/** Jpush的JOB线程数 **/
private int jpushThreadCount;
/** Jpush的推送报告Cron **/
private String jpushReportCron;
}

创建类实现Runable接口即可使用。

@Component
@Slf4j
public class DeviceOrgTask implements Runnable { @Override
public void run() {
DateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
log.debug(Thread.currentThread() + " " + sdf.format(new Date()));
}
}

 

问题: 

1.  从以上的一简易配置中(如果不添加SchedulerConfig)也可以运行,发现如果在方法中添加Thread.sleep(),会影响下面方法的运行和下次的运行时间。

因为默认的 ConcurrentTaskScheduler 计划执行器采用Executors.newSingleThreadScheduledExecutor() 实现单线程的执行器。

因此要使用异步: 采用异步的方式执行调度任务,配置 Spring 的 @EnableAsync,在执行定时任务的方法上标注 @Async配置任务执行。注意线程池大小要依据单个任务时间和任务间隔。

2. 分布式重复执行

1.使用 redis分布式锁setnx命令 来控制是否已经存在有任务在执行。

2.使用spring的shedLock,创建一个数据表,先更新者执行,非更新者不执行。

参见:https://segmentfault.com/a/1190000011975027

3. 主程序挂掉后,job停止,数据丢失

使用redis记录执行时间。

异常:

[ERROR] 2019-03-21 14:00:38,757 >>> org.springframework.scheduling.support.TaskUtils$LoggingErrorHandler.handleError(TaskUtils.java:96)
[massage] Unexpected error occurred in scheduled task.
java.lang.IllegalStateException: org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@8f84321 has been closed already

使用applicationContext未获取到bean异常。

因EnabledTask会使得任务在执行完后closeContext导致,在配置文件添加:

spring.cloud.task.closecontext_enable=false

高版本用 spring.cloud.task.close_context_enabled=false

参考文章: https://stackoverflow.com/questions/48933575/spring-cloud-task-scheduling-context-closed

springboot + schedule的更多相关文章

  1. Quartz 和 springboot schedule中的cron表达式关于星期(周几)的不同表示

    一.Quartz中cron 表达式分析: quartz 官方源码(org.quartz.CronExpression)解释: Cron expressions are comprised of 6 r ...

  2. SpringBoot Schedule 配置

    1. 定时任务实现方式 定时任务实现方式: Java自带的java.util.Timer类,这个类允许你调度一个java.util.TimerTask任务.使用这种方式可以让你的程序按照某一个频度执行 ...

  3. SpringBoot入门教程(九)定时任务Schedule

    在日常项目运行中,我们总会有需求在某一时间段周期性的执行某个动作.比如每天在某个时间段导出报表,或者每隔多久统计一次现在在线的用户量.在springboot中可以有很多方案去帮我们完成定时器的工作,有 ...

  4. springBoot中使用定时任务

    简单示例 导入依赖 springBoot已经默认集成了定时任务的依赖,只需要引入基本的依赖就可以使用定时任务. <parent> <groupId>org.springfram ...

  5. SpringBoot定时任务 - 经典定时任务设计:时间轮(Timing Wheel)案例和原理

    Timer和ScheduledExecutorService是JDK内置的定时任务方案,而业内还有一个经典的定时任务的设计叫时间轮(Timing Wheel), Netty内部基于时间轮实现了一个Ha ...

  6. springboot集成schedule(深度理解)

    背景 在项目开发过程中,我们经常需要执行具有周期性的任务.通过定时任务可以很好的帮助我们实现. 我们拿常用的几种定时任务框架做一个比较: 从以上表格可以看出,Spring Schedule框架功能完善 ...

  7. springboot集成schedule

    背景 在项目开发过程中,我们经常需要执行具有周期性的任务.通过定时任务可以很好的帮助我们实现. 我们拿常用的几种定时任务框架做一个比较: 从以上表格可以看出,Spring Schedule框架功能完善 ...

  8. SpringBoot专题2----springboot与schedule的激情相拥

    Schedule:计划,任务.就是我们常说的定时任务.这在我们做一些系统的时候,是经常需要用到的.比如:定时更新一些数据,定时更新索引,都需要这样的一个功能. 第一:创建一个名为springboot- ...

  9. SpringBoot系列:Spring Boot定时任务Spring Schedule

    Spring Schedule是Spring提供的定时任务框架,相较于Quartz,Schedule更加简单易用,在中小型应用中,对于大部分需求,Schedule都可以胜任. 一.Spring Sch ...

随机推荐

  1. vim编辑器学习记录

    i:在光标所在字符前开始插入 a:在光标所在字符后开始插入 o:在光标所在行的下面另起一新行插入 s:删除光标所在的字符并开始插入 I:在光标所在行的行首开始插入 如果行首有空格则在空格之后插入 A: ...

  2. req和resp常用的方法

    req:  1. setAttribute()在Request域中存储数据 2. setCharacterEncoding()设置请求参数的编码方式,只对post请求有效 3. getMethod() ...

  3. apache做反向代理

    实验目的 通过apache实现反向代理的功能,类似nginx反向代理和haproxy反向代理 环境准备 逻辑架构如下 前端是apche服务器,监听80端口,后端有两台web服务器,分别是node1和n ...

  4. 出现No package gcc+ available解决办法

    系统 CentOS Linux release 7.4.1708 (Core)   安装gcc时报错 [root@ip---- node-v10.15.3]# yum -y install gcc+ ...

  5. 群晖NAS同步文件,防止Mac OS X自动休眠的办法

    背景: NAS drive同步文件到移动硬盘,需要消耗很长时间.但长时间不动电脑,mac又会自动关闭所有application,进入休眠模式,导致同步任务被终止. 使用系统的节能设置配置也没能成功关闭 ...

  6. Centos7 kernel 内核升级 GPU显卡驱动程序编译安装

    1.NVIDIA官网下载相关显卡驱动 #在服务器上查看网卡型号 lspci -mm | grep NVIDIA   #在NVIDIA官网下载相应型号驱动程序 https://www.geforce.c ...

  7. Nginx reverse proxy NSQAdmin

    以下配置只针对nsqadmin v1.1.0 (built w/go1.10.3)版本 ## The default server# server {    listen       80 defau ...

  8. python基础知识2---核心风格

    阅读目录 一.语句和语法 二.变量定义与赋值 三.内存管理 内存管理: 引用计数: 简单例子 四.python对象 五.标识符 六.专用下划线标识符 七.编写模块基本风格 八.示范 一.语句和语法 # ...

  9. Office2010安装出现“错误1907”的解决方法(未验证)

    http://bbs.pcbeta.com/viewthread-1627988-1-5.html 这个问题我遇到过.解决方法:1.安装时提示错误选择忽略,安装完成后.2.如果能正常使用OFFICE软 ...

  10. (一)CentOS6.3安装Hadoop2.6.5

    1.准备环境 下载CentOS: https://www.centos.org/download/ 下载JDK: https://www.oracle.com/technetwork/java/jav ...