`
yangjizhong24
  • 浏览: 395764 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Task Scheduling Simplifications in Spring 3.0

阅读更多

简单说下基本配置:

 

applicationContext-task.xml内容如下:

 

<?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:context="http://www.springframework.org/schema/context" 
    xmlns:task="http://www.springframework.org/schema/task" 
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.0.xsd 
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">

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

</beans>

 

 

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

 

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

 

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

 

另一种方式如下:

 

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

 

<task:scheduled-tasks>  

     <task:scheduled ref="simpleProcessor" method="process" cron="3/10 * * * * ?"/>  

 </task:scheduled-tasks> 

 

 

 

0
2
分享到:
评论
3 楼 yangjizhong24 2011-06-17  
开朗的茶 写道
杨哥好,因为我们的系统需求要求调度时间是可配的,所以我用了第二中方式,但是总是跑不起来,我用第一种方式,也跑不起来,只有把第一第二种方式的配置都加上,然后代码里用注解的,才能跑起来,我不知道为什么,想请教下杨哥,不知道杨哥愿不愿意帮忙,谢谢


不好意思,刚看到,这几天有点太忙啦,第2种我没有试过,你解决了就好哈。
2 楼 开朗的茶 2011-06-08  
开朗的茶 写道
杨哥好,因为我们的系统需求要求调度时间是可配的,所以我用了第二中方式,但是总是跑不起来,我用第一种方式,也跑不起来,只有把第一第二种方式的配置都加上,然后代码里用注解的,才能跑起来,我不知道为什么,想请教下杨哥,不知道杨哥愿不愿意帮忙,谢谢

谢谢杨哥了,可能你还没看到我的问题,不过我已经找出原因了,不用麻烦你了……
1 楼 开朗的茶 2011-06-02  
杨哥好,因为我们的系统需求要求调度时间是可配的,所以我用了第二中方式,但是总是跑不起来,我用第一种方式,也跑不起来,只有把第一第二种方式的配置都加上,然后代码里用注解的,才能跑起来,我不知道为什么,想请教下杨哥,不知道杨哥愿不愿意帮忙,谢谢

相关推荐

Global site tag (gtag.js) - Google Analytics