Spring之任务调度(类似javascript的timeout方法,每隔一定时间执行操作)

任务调度:在指定时间执行操作,或者周期性的重复执行操作。

实现方式:

1.使用quartz插件

2.使用Spring3.0之后(包括3.0)版本中集成的task

(1)引入命名空间:在applicationContext.xml中加入

xmlns:task=http://www.springframework.org/schema/task
xsi:schemaLocation属性中加入:

http://www.springframework.org/schema/task 
http://www.springframework.org/schema/task/spring-task-4.1.xsd
(2)在applicationContext.xml中配置:

<bean id="task" class="com.test.Task"/>
<!-- 执行任务的线程池(数) -->
<task:scheduled id="one" pool-size="10"/>
<!-- 调度任务,使用cron表达式描述执行任务时间 -->
<task:scheduled-tasks scheduler="one">
<task:scheduled ref="task" method="show" cron="0/2 * * * * ?"/><!-- 每两秒执行一次 -->
</task:scheduled-tasks>
Task.java:测试类如下:

package com.test;

import java.text.SimpleDateFormat;
import java.util.Date;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Task {

	public static void main(String[] args) {
		// TODO Auto-generated method stub

		ApplicationContext context = new  ClassPathXmlApplicationContext("applicationContext.xml");
		
	}
	public void show(){
		SimpleDateFormat format = new SimpleDateFormat("HH:MM:ss:SS");
		System.out.println(format.format(new Date()));
	}
}
执行结果如下:

17:03:38:07
17:03:40:04
17:03:42:05
17:03:44:01

... ...




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值