欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring 对 timer 的支持 实现简单的web中定时器操作

程序员文章站 2022-05-28 14:15:22
...

一共分两个步骤:

1.写一个java.util.Timer的子类,实现run方法。

package com.test;

/**
 * @author Evan
 */
public class TimerTaskSample extends java.util.TimerTask {
	@Override
	public void run() {
		
		System.out.println("spring is invoking a timer task...");
	}

}

 2.配置spring的配置文件。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xmlns:tx="http://www.springframework.org/schema/tx"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd"> 
<bean id="timerTask" class="com.test.TimerTaskSample"/>
<bean id="scheduledTask" class="org.springframework.scheduling.timer.ScheduledTimerTask">
	<property name="delay" value="10000"></property>
	<property name="period" value="5000"></property>
	<property name="timerTask" ref="timerTask" ></property>
</bean>

<bean id="timerFactory" class="org.springframework.scheduling.timer.TimerFactoryBean">
	<property name="scheduledTimerTasks">
	<list>
		<ref local="scheduledTask"></ref>
	</list>
	</property>
</bean>

</beans>

 delay:延时(毫秒) ,过多久后执行timerTask

period:间隔多久(毫秒)执行一次

timerTask:要执行的任务。

 

timerFactory:spring调用任务的工厂,可以指定多个任务。

以上只是一个简单的例子,可以用于在启动web容器后,后台自动定时执行的内容可以增加在Timer子类的run方法中,比如:定时去查询数据库的数据,向其他服务器发消息等。

如果有复杂的需求,可以考虑使用quartz,这个spring也是支持的,暂时没研究。