打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
spring中集成TimerTask执行定时任务

Spring对Timer的支持的核心是由ScheduledTimerTask和TimerFactoryBean类组成的。 ScheduledTimerTask类是对TimerTask的包装器实现,这样你就可以为这个任务定义触发器信息。使用 TimerFactoryBean类,你可以让Spring使用配置创建触发器,并为一组指定的ScheduledTimerTask bean自动创建Timer实例。

1、自定义timerTask,比如:定时输出ServletContext中的信息,本例中输出项目的绝对路径(比如:D:\software\apache-tomcat-6.0.33\webapps\spring\)

Java代码
 
  1. public class BirthdayReminderTimerTask extends TimerTask implements ServletContextAware{   
  2.   /*通过实现ServletContextAware可获得servletContext*/  
  3.   private ServletContext servletContext;   
  4.   private static Logger logger = Logger.getLogger(BirthdayReminderTimerTask.class);   
  5.   @Override  
  6.   public void run() {   
  7. //    logger.debug("BirthdayReminderTimerTask is running");   
  8.     setServletContext(servletContext);   
  9.     try {   
  10.       System.out.println(this.servletContext.getRealPath("/"));   
  11.     } catch (Exception e) {   
  12.       e.printStackTrace();   
  13.     }   
  14.   }   
  15.   public void setServletContext(ServletContext servletContext) {   
  16.     this.servletContext = servletContext;       
  17.   }   
  18. }  

 2、在spring的bean配置文件中配置,当系统加载该文件时,配置的定时器将自动启动,同时被spring管理。

Xml代码
 
  1. <!--自定义任务-->       
  2.     <bean id="birthdayReminder" class="com.jep.task.BirthdayReminderTimerTask"></bean>     
  3.          
  4.     <!-- ScheduledTimerTask类是对TimerTask的包装器实现,这样你就可以为这个任务定义触发器信息。 -->     
  5.     <bean id="birthdayReminderTimerTask"     
  6.         class="org.springframework.scheduling.timer.ScheduledTimerTask">     
  7.         <!-- 设置启动延迟 -->     
  8.         <property name="delay">     
  9.             <value>3000</value>     
  10.         </property>     
  11.         <!-- 后续延迟 -->     
  12.         <property name="period">     
  13.             <value>5000</value>     
  14.         </property>     
  15.         <!-- 指定触发器信息 -->     
  16.         <property name="timerTask">     
  17.             <ref local="birthdayReminder" />     
  18.         </property>     
  19.     </bean>     
  20.          
  21.     <!-- 使用TimerFactoryBean类,你可以让Spring使用配置创建触发器,并为一组指定的ScheduledTimerTask bean自动创建Timer实例。 -->     
  22.     <bean id="timerFactory"     
  23.         class="org.springframework.scheduling.timer.TimerFactoryBean">     
  24.         <property name="scheduledTimerTasks">     
  25.             <list>     
  26.                 <ref local="birthdayReminderTimerTask" />                  
  27.             </list>     
  28.         </property>             
  29.     </bean>    

   3、对于web项目,需要在web.xml中进行如下配置

Xml代码
 
  1. <!-- Spring ApplicationContext配置文件的路径此参数用于后面的Spring-Context loader -->  
  2.     <context-param>  
  3.         <param-name>contextConfigLocation</param-name>  
  4.         <param-value>classpath:beans.xml</param-value>  
  5.     </context-param>  
  6.     <!--Spring ApplicationContext 载入 -->  
  7.     <listener>  
  8.         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  
  9.     </listener>  
本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
spring执行定时任务
Spring为ApplicationContext提供的三种方式(转)_fyf_fff_新...
彻底理解spring的定制任务(scheduling)
spring是如何解析自己的配置文件的(1)
spring定时服务讲解
Java Web应用中的任务调度
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服