java单机环境实现定时任务技术-亚博电竞手机版

目录

  • 前言
  • 定时任务框架
  • timetask
  • scheduledexecutorservice
  • spring task
  • 结语

前言

开发的系统中过程,会有如下的需求:

  • 凌晨生成订单统计报表
  • 定时推送文章、发送邮件
  • 每隔5分钟动态抓取数据更新
  • 每晚定时计算用户当日收益情况并推送给用户
  • .....

通常这些需求我们都是通过定时任务来实现,列举了java中一些常用的的定时任务框架。

定时任务框架

timetask

从我们开始学习java开始,最先实现定时任务的时候都是采用timetask, timer内部使用taskqueue的类存放定时任务,它是一个基于最小堆实现的优先级队列。taskqueue会按照任务距离下一次执行时间的大小将任务排序,保证在堆顶的任务最先执行。

实例代码:

public static void main(string[] args) { timertask task = new timertask() { public void run() { system.out.println("当前时间: " new date() "n" "线程名称: " thread.currentthread().getname()); } }; timer timer = new timer("timer"); long delay = 5000l; timer.schedule(task, delay); system.out.println("当前时间: " new date() "n" "线程名称: " thread.currentthread().getname()); }

运行结果:

当前时间: wed apr 06 22:05:04 cst 2022n线程名称: main 当前时间: wed apr 06 22:05:09 cst 2022n线程名称: timer 复制代码

从结果可以看出,5秒后执行了定时任务。

缺点:

  • timetask执行任务只能串行执行,一旦一个任务执行的时间比较长的话将会影响其他任务执行
  • 执行任务过程如果发生异常,任务会直接停止。

随着时间的推移,java的技术也在不断的更新,针对timetask的不足,scheduledexecutorservice出现替代了timetask。

scheduledexecutorservice

scheduledexecutorservice是一个接口,有多个实现类,比较常用的是scheduledthreadpoolexecutor。而scheduledthreadpoolexecutor本身就是一个线程池,其内部使用 delayqueue 作为任务队列,并且支持任务并发执行。

实例代码:

public static void main(string[] args) throws interruptedexception { scheduledexecutorservice executorservice = executors.newscheduledthreadpool(3); // 执行任务: 每 10秒执行一次 executorservice.scheduleatfixedrate(() -> { system.out.println("执行任务:" new date() ",线程名称: " thread.currentthread().getname()); }, 1, 10, timeunit.seconds); }

缺点:

  • 尽量避免用executors方式去创建线程池,因为jdk自带线程池内部使用的的队列的比较大,很容易出现oom。
  • 定时任务是基于jvm单机内存形式的,一旦重启定时任务就消失了。
  • 无法支持cron表达式实现丰富的定时任务。

spring task

学习了spring之后,开始使用了spring 自带的task。spring framework 自带定时任务,提供了 cron 表达式来实现丰富定时任务配置。

实例代码:

@enablescheduling @component public class springtask { private logger logger = loggerfactory.getlogger(springtask.class); private static final simpledateformat dateformat = new simpledateformat( "hh:mm:ss"); /** * fixedrate:固定速率执行。每5秒执行一次。 */ @scheduled(fixedrate = 5000) public void invoketaskwithfixedrate() { logger.info("fixed rate task : current time is {}", dateformat.format(new date()恰卡编程网)); } /** * fixeddelay:固定延迟执行。距离上一次调用成功后2秒才执。 */ @scheduled(fixeddelay = 2000) public void invoketaskwithfixeddelay() { try { timeunit.seconds.sleep(3); logger.info("fixed delay task : current time is {}", dateformat.format(new date())); } catch (interruptedexception e) { logger.error("invoke task error",e); } } /** * initialdelay:初始延迟。任务的第一次执行将延迟5秒,然后将以5秒的固定间隔执行。 */ @scheduled(initialdelay = 5000, fixedrate = 5000) public void invoketaskwithinitialdelay() { logger.info("task with initial delay : current time is {}", dateformat.format(new date())); } /** * cron:使用cron表达式,每隔5秒执行一次 */ @scheduled(cron = "0/5 * * * * ? ") public void invoketaskwithcronexpression() { logger.info("task cron expression: current time is {}", dateformat.format(new date())); } }

执行结果:

2022-04-06 23:06:20.945 info 14604 --- [ scheduling-1] com.fw.task.springtask : task cron expression: current time is 23:06:20

2022-04-06 23:06:22.557 info 14604 --- [ scheduling-1] com.fw.task.springtask : task with initial delay : current time is 23:06:22

2022-04-06 23:06:22.557 info 14604 --- [ scheduling-1] com.fw.task.springtask : fixed rate task : current time is 23:06:22

2022-04-06 23:06:25.955 info 14604 --- [ scheduling-1] com.fw.task.springtask : fixed delay task : current time is 23:06:25

2022-04-06 23:06:25.955 info 14604 --- [ scheduling-1] com.fw.task.springtask : task cron expression: current time is 23:06:25

2022-04-06 23:06:27.555 info 14604 --- [ scheduling-1] com.fw.task.springtask : task with initial delay : current time is 23:06:27

2022-04-06 23:06:27.556 info 14604 --- [ scheduling-1] com.fw.task.springtask : fixed rwww.cppcns.comate task : current time is 23:06:27

@enablescheduling需要开启定时任务,@scheduled(cron = "0/5 * * * * ?")配置定时任务的规则。cron表达式支持丰富定时任务配置,不熟悉的的可以查看

优点:

使用简单方便,支持各种复杂的定时任务配置

缺点:

  • 基于单机形式定时任务,一旦重启定时任务就消失了。
  • 定时任务默认是单线程执行任务,如果需要并行执行需要开启@enableasync。
  • 没有统一的图形化任务调度的管理,无法控制定时任务

结语

任何技术的出现都有它的价值,技术没有最好的,只有最合适的。我们要针对不同的需求选择最合适的技术,切莫过度架构设计。本文讲解了单机环境实现定时任务的技术,

到此这篇关于java单机环境实现定时任务技术的文章就介绍到这了,更多相关java定时任务框架内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

展开全文
内容来源于互联网和用户投稿,文章中一旦含有亚博电竞手机版的联系方式务必识别真假,本站仅做信息展示不承担任何相关责任,如有侵权或涉及法律问题请联系亚博电竞手机版删除

最新文章

网站地图