首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

spring 任务调度的运用

2012-11-07 
spring 任务调度的使用http://static.springsource.org/spring/docs/current/spring-framework-reference/

spring 任务调度的使用


http://static.springsource.org/spring/docs/current/spring-framework-reference/html/scheduling.html

你看看这篇文档 写的挺详细的

http://blog.springsource.com/2010/01/05/task-scheduling-simplifications-in-spring-3-0/

?

?? <context:component-scan base-package="com.chinacache.oss.facade.resource" /><!--需要扫描的包-->???????
?? <task:annotation-driven/> <!-- 这句是重点 定时器开关-->

?

配置好后,有两种方式可以实现定时任务执行,我倾向于注解这种:

?

Java代码? @Scheduled(fixedDelay?=?3000) ??public?void?process()?{ ??????System.out.println("hello,jizhong,now?is:??"?+?new?Date()); ??}??

@Scheduled(fixedDelay = 3000) public void process() { System.out.println("hello,jizhong,now is: " + new Date()); }

@Scheduled(cron="* 10/1 * * * * ?")


spring 任务调度的运用

这样,在程序环境中配置好后,每隔3秒将执行一次该方法。

?

另一种方式如下:

?

在applicationContext-task.xml追加如下内容,即可。

?

Xml代码? <task:scheduled-tasks>?? ?????????<task:scheduled?ref="simpleProcessor"?method="process"?cron="3/10?*?*?*?*??"/>?? ?????</task:scheduled-tasks>??

热点排行