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 * * * * ?")


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

另一种方式如下:

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

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

猜你喜欢

转载自vanadiumlin.iteye.com/blog/1073340