spring 定时任务 TimerTask (fixedRate)

使用TimerTask来实现方便快捷。
1 配置spring的application.xml
2 实现TimerTask

(1)我的配置文件:applicationContext-fixedRed.xml
注册执行定时任务的bean:
<bean id="task" class="com.vianet.iss.service.timer.TaskJob">
</bean>
定时器描述:
<bean id="repeatingTrigger" class="org.springframework.scheduling.timer.ScheduledTimerTask">
<!--启动30秒:30000后执行 -->
<property name="delay">
<value>30000</value>
</property>
<!--每隔60秒(60000)=1分钟执行一次-->
<property name="period">
<value>60000</value>
</property>
<!--注入要监控的javaBean -->
<property name="timerTask">
<ref bean="task" />
</property>
<!--类型是否为fixedRate型,默认为fixedDelay-->
<property name="fixedRate">
<value>true</value>
</property>
</bean>
(2)java类
public class TaskJob extends TimerTask {
public void run() {
//在这里写你需要定期执行的code即可
            System.out.println("hello!")
   }

}
完成,你可以运行一下:
public class TestApp {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("======");
ApplicationContext context2 = new
ClassPathXmlApplicationContext("/META-INF/applicationContext-fixedRed.xml");

System.out.println("=====");
}
}

你可能感兴趣的:(spring,xml,bean)