基于Spring task注解方式配置任务

来源:互联网 发布:中国药科大学网络教育 编辑:程序博客网 时间:2024/05/21 07:12

 此文标题有错,感谢各位网友指出

        林炳文Evankaka原创作品。转载请注明出处http://blog.csdn.net/evankaka

        新建一个Java工程,导入要用到的包,Spring3.2、Quartz2.2.1、aopalliance-1.0.jar、commons-logging-1.2.jar。整个工程目录如下:


本文工程免费下载

1、配置需要调度的类,并添加注解
[java] view plain copy
  1. package com.mucfc;  
  2. import java.text.SimpleDateFormat;  
  3. import java.util.Date;  
  4.   
  5. import org.springframework.scheduling.annotation.Scheduled;  
  6. import org.springframework.stereotype.Component;  
  7. /**   
  8. *事件类,基于Spring注解方式 
  9. *作者 林炳文(ling20081005@126.com 博客:http://blog.csdn.net/evankaka)   
  10. *时间 2015.4.29 
  11. */  
  12. @Component  
  13. public class MyJob {  
  14.     public MyJob(){  
  15.         System.out.println("MyJob创建成功");  
  16.     }  
  17.      @Scheduled(cron = "0/1 * *  * * ? ")//每隔1秒隔行一次  
  18.         public void run(){  
  19.          System.out.println("Hello MyJob  "+  
  20.                     new SimpleDateFormat("yyyy-MM-dd HH:mm:ss ").format(new Date()));  
  21.         }  
  22.   
  23. }  
2、首先要配置我们的beans.xml,在xmlns 多加下面的内容
[html] view plain copy
  1. xmlns:task="http://www.springframework.org/schema/task"  
3、然后xsi:schemaLocation多加下面的内容
[java] view plain copy
  1. http://www.springframework.org/schema/task    
  2. http://www.springframework.org/schema/task/spring-task-3.0.xsd  

4、最后是我们的task任务扫描注解

[java] view plain copy
  1. <!--开启这个配置,spring才能识别@Scheduled注解-->  
  2.  <task:annotation-driven/>   
5、自动配置扫描位置:

[java] view plain copy
  1. <!-- 自动扫描注解的bean -->  
  2. lt;context:component-scan base-package="com.mucfc"/>  
6、整个文档如下
[html] view plain copy
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"  
  4.     xmlns:p="http://www.springframework.org/schema/p" xmlns:task="http://www.springframework.org/schema/task"  
  5.     xsi:schemaLocation="http://www.springframework.org/schema/beans  
  6.     http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  
  7.     http://www.springframework.org/schema/context     
  8.     http://www.springframework.org/schema/context/spring-context-3.0.xsd  
  9.     http://www.springframework.org/schema/task    
  10.     http://www.springframework.org/schema/task/spring-task-3.0.xsd">  
  11.   
  12.     <!--开启这个配置,spring才能识别@Scheduled注解-->  
  13.      <task:annotation-driven/>  
  14.      <!-- 自动扫描注解的bean -->  
  15.     <context:component-scan base-package="com.mucfc"/>  
  16.   
  17. </beans>  
7、使用
[java] view plain copy
  1. package com.mucfc;  
  2. import org.springframework.context.ApplicationContext;  
  3. import org.springframework.context.support.ClassPathXmlApplicationContext;  
  4. public class Test {  
  5.   
  6.     public static void main(String[] args) {  
  7.         // TODO Auto-generated method stub  
  8.         ApplicationContext context=new ClassPathXmlApplicationContext("beans.xml");  
  9.     }  
  10.   
  11. }  

输出结果:


一旦这个xml被加载进来来,就会自动创建bean的实例,并且开始定时任务了
需要注意的几点:
1、spring的@Scheduled注解  需要写在实现上
2、 定时器的任务方法不能有返回值(如果有返回值,spring初始化的时候会告诉你有个错误、需要设定一个proxytargetclass的某个值为true、具体就去百度google吧)
3、实现类上要有组件的注解@Component

林炳文Evankaka原创作品。转载请注明出处http://blog.csdn.net/evankaka

本文工程免费下载

原创粉丝点击