在Spring中使用JDK定时器实现调度任务

简介: 本文探讨Spring如何集成JDK的Timer定时器,实现计划执行任务。有时候,需要执行一些无用户交互的程序,就像在指定的时间间隔后台运行进程那样。比如,杀毒软件可以每隔2天就在后台运行一次。
本文探讨Spring如何集成JDK的Timer定时器,实现计划执行任务。

有时候,需要执行一些无用户交互的程序,就像在指定的时间间隔后台运行进程那样。比如,杀毒软件可以每隔2天就在后台运行一次。又比如某些程序每天都要连接一次服务器,查看有没有更新。

本文探讨Spring如何集成JDK的Timer定时器,实现计划执行任务。

一、Spring框架集成JDK的Timer

JDK的Timer任务对象提供了在指定时间执行任何任务的功能。我们来看下面的例子:

假设我们想写一个服务,此服务周期性的检查互联网连接,并用日志记录连接的状态。让我们假定此服务是全天候运行的,且每隔30秒执行一次。

所需要的JAR包如下:

log4j-1.2.13.jar
commons-logging-1.1.1.jar
spring-beans-3.2.4.RELEASE.jar
spring-context-3.2.4.RELEASE.jar
spring-context-support-3.2.4.RELEASE.jar
spring-core-3.2.4.RELEASE.jar
spring-expression-3.2.4.RELEASE.jar

二、写服务类

下面的类实现了互联网连接检查。

Listing 1: CheckInternetConnectionService.java
[java]   view plain copy print ?
  1. package com.chszs;  
  2. import java.net.URL;  
  3. import java.net.URLConnection;  
  4. import java.util.Date;  
  5.   
  6. public class CheckInternetConnectionService {  
  7.     public void checkConnection(){  
  8.         if(doCheck()){  
  9.             System.out.println(new Date() + "Internet connection available");  
  10.         }else{  
  11.             System.out.println(new Date() + "Internet connection not available");  
  12.         }  
  13.     }  
  14.       
  15.     private boolean doCheck(){  
  16.         URL urlObject = null;  
  17.         URLConnection urlConnection = null;  
  18.         try{  
  19.             urlObject = new URL("http://www.baidu.com");  
  20.             urlConnection = urlObject.openConnection();  
  21.             urlConnection.getContent();  
  22.             return true;  
  23.         }catch(Exception e){  
  24.             return false;  
  25.         }  
  26.     }  
  27. }  

上面的代码很简单,doCheck()方法检查互联网连接是否有效。

三、封装定时器任务服务

下面我们写一个服务,实现定时任务。代码如下:

Listing 2: CheckInternetConnectionWithTimerTask
[java]   view plain copy print ?
  1. package com.chszs;  
  2. import java.util.TimerTask;  
  3.   
  4. public class CheckInternetConnectionWithTimerTask extends TimerTask{  
  5.     private CheckInternetConnectionService service;  
  6.       
  7.     public CheckInternetConnectionService getService(){  
  8.         return service;  
  9.     }  
  10.       
  11.     public void setService(CheckInternetConnectionService service){  
  12.         this.service = service;  
  13.     }  
  14.       
  15.     @Override  
  16.     public void run() {  
  17.         service.checkConnection();  
  18.     }  
  19. }  

此类继承了java.util.TimerTask类。

重写了run()方法,可以执行任意操作。这里是调用互联网连接检查。

注意定时器任务依赖于连接服务对象。稍后,我们将看到怎样连线这两个对象。

四、配置

至今,我们还没有指定执行的时间间隔。Spring提供了这样的配置支持。下面我们来看看该如何配置:

Listing 3: timer.xml
[html]   view plain copy print ?
  1. xml version="1.0" encoding="UTF-8"?>  
  2. beans xmlns="http://www.springframework.org/schema/beans"  
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"  
  4.     xmlns:cache="http://www.springframework.org/schema/cache" xmlns:p="http://www.springframework.org/schema/p"  
  5.     xsi:schemaLocation="http://www.springframework.org/schema/beans  
  6.     http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  
  7.     http://www.springframework.org/schema/context  
  8.     http://www.springframework.org/schema/context/spring-context-3.0.xsd">  
  9.       
  10.     bean id="connectionCheckService" class="com.chszs.CheckInternetConnectionService">  
  11.     bean>  
  12.     bean id="connectionCheckTimerTask" class="com.chszs.CheckInternetConnectionWithTimerTask">  
  13.         property name="service" ref="connectionCheckService" />  
  14.     bean>  
  15.     bean id="scheduledConnectionCheckTimerTask" class="org.springframework.scheduling.timer.ScheduledTimerTask">  
  16.         property name="delay" value="2000" />  
  17.         property name="period" value="30000" />  
  18.         property name="timerTask" ref="connectionCheckTimerTask" />  
  19.     bean>  
  20.     bean class="org.springframework.scheduling.timer.TimerFactoryBean">  
  21.         property name="scheduledTimerTasks">  
  22.             list>  
  23.                 ref bean="scheduledConnectionCheckTimerTask" />  
  24.             list>  
  25.         property>  
  26.     bean>  
  27. beans>  

以上配置文件的细节:

"connectionCheckService"这个Bean表示互联网连接服务。

"connectionCheckTimerTask"这个Bean定义了定时器任务。由于此定时器任务依赖于"connectionCheckService"这个Bean,故通过配置进行注入。

下面的代码是从Spring框架中声明定时器任务的调度对象:
[html]   view plain copy print ?
  1. bean id="scheduledConnectionCheckTimerTask" class="org.springframework.scheduling.timer.ScheduledTimerTask">  
  2.     property name="delay" value="2000" />  
  3.     property name="period" value="30000" />  
  4.     property name="timerTask" ref="connectionCheckTimerTask" />  
  5. bean>  

org.springframework.scheduling.timer.ScheduledTimerTask这个类提供了对定时任务调度执行的支持。

属性delay的单位是毫秒,它指定任务执行前需要延时多少时间。2000意味着延时2秒开始执行任务。

第二个属性period的单位也是毫秒,它表示任务每隔多少时间就重复执行一次。30000这个值表示每隔30秒执行一次。

最后一个属性是timerTask,它指定实际要执行的任务。

触发调度任务是通过TimerFactoryBean进行的。它可以指定待调度的任务对象列表,尽管这里只有1个待调度的任务对象。
[html]   view plain copy print ?
  1. bean class="org.springframework.scheduling.timer.TimerFactoryBean">  
  2.     property name="scheduledTimerTasks">  
  3.         list>  
  4.             ref bean="scheduledConnectionCheckTimerTask" />  
  5.         list>  
  6.     property>  
  7. bean>  

五、客户端

客户端程序会载入应用程序的上下文。一旦上下文被载入,服务对象、定时器任务对象、调度的定时器任务对象都会被载入并连线。下面我们继续介绍触发器Bean是如何触发定时器任务的执行,互联网连接在每隔30秒运行一次。

Listing 4: Client.java
[java]   view plain copy print ?
  1. package com.chszs;  
  2.   
  3. import org.springframework.context.ApplicationContext;  
  4. import org.springframework.context.support.ClassPathXmlApplicationContext;  
  5.   
  6. public class Client {  
  7.     public static void main(String[] args){  
  8.         ApplicationContext ctx = new ClassPathXmlApplicationContext("timer.xml");  
  9.     }  
  10. }  

运行Client.java,可以看到每隔30秒定时器任务就调度执行一次。
执行结果如下:
[html]   view plain copy print ?
  1. Sun Aug 11 21:08:26 CST 2013Internet connection available  
  2. Sun Aug 11 21:08:56 CST 2013Internet connection available  
  3. Sun Aug 11 21:09:26 CST 2013Internet connection available  
  4. Sun Aug 11 21:09:56 CST 2013Internet connection available  

目录
相关文章
|
2月前
|
druid Java 数据库
Spring Boot的定时任务与异步任务
Spring Boot的定时任务与异步任务
|
2月前
|
监控 Java 数据处理
【Spring云原生】Spring Batch:海量数据高并发任务处理!数据处理纵享新丝滑!事务管理机制+并行处理+实例应用讲解
【Spring云原生】Spring Batch:海量数据高并发任务处理!数据处理纵享新丝滑!事务管理机制+并行处理+实例应用讲解
|
12天前
|
监控 Java API
Spring Boot与异步任务:整合与应用场景
【4月更文挑战第29天】异步任务在现代应用程序开发中扮演着重要的角色,它们可以提高应用程序的性能和响应速度,尤其适用于处理长时间运行的任务或需要等待外部资源的场景。Spring Boot提供了强大的支持来简化异步任务的实现。
24 0
|
3月前
|
设计模式 安全 Java
深入理解Spring Boot AOP:CGLIB代理与JDK动态代理的完全指南
深入理解Spring Boot AOP:CGLIB代理与JDK动态代理的完全指南
379 1
|
4月前
|
Java 调度 流计算
在使用Spring Boot启动Flink处理任务时
在使用Spring Boot启动Flink处理任务时【1月更文挑战第22天】【1月更文挑战第108篇】
67 1
|
4月前
|
Java Linux iOS开发
Spring5源码(27)-静态代理模式和JDK、CGLIB动态代理
Spring5源码(27)-静态代理模式和JDK、CGLIB动态代理
23 0
|
4月前
|
XML Java 数据格式
Spring 源码阅读 70:基于 JDK 的 AOP 代理拦截器链执行(4)- 容易被忽略的 ExposeInvocationInterceptor
【1月更文挑战第5天】本文分析了 Spring AOP 拦截器链中的一个特殊拦截器 ExposeInvocationInterceptor 的注册的时机以及它的作用。至此,基于 JDK 的 AOP 代理拦截器链执行的逻辑就分析完了。
431 0
|
4月前
|
Java 索引 Spring
Spring 源码阅读 69:基于 JDK 的 AOP 代理拦截器链执行(3)- MethodInterceptor 分析
【1月更文挑战第4天】本文详细分析了 Spring AOP 中五种增强类型对应的拦截器中增强方法的执行逻辑,结合上一篇中分析的 ReflectiveMethodInvocation 中proceed方法的执行逻辑,就组成了完整的拦截器链递归调用的逻辑。
35 0
|
4月前
|
Java 索引 Spring
Spring 源码阅读 68:基于 JDK 的 AOP 代理拦截器链执行(2)- ReflectiveMethodInvocation 分析
【1月更文挑战第3天】本文分析了 ReflectiveMethodInvocation 类中的proceed方法,通过对这个方法的分析,了解了连接器链中的增强逻辑是如何逐层执行的,以及目标方法是什么时候被调用的。
44 0
|
4月前
|
Java Spring
Spring 源码阅读 67:基于 JDK 的 AOP 代理拦截器链执行(1)- 执行前的准备工作
【1月更文挑战第2天】本文总结了 JdkDynamicAopProxy 的invoke方法在获取到拦截器链之后,是如何开始执行增强逻辑的。对于拦截器链为空的情况,会直接调用目标方法,而存在拦截器的情况下,会将拦截器链和目标方法调用的信息封装成一个 MethodInterceptor 对象,执行其proceed方法,来完成增强逻辑和目标方法的执行。
21 0