基于spring注解实现定时任务

时间:2021-05-14 07:48:39

步骤一、
springmvc.xml中配置定时任务标签、添加命名空间:

<!-- 配置定时器 -->
    <task:annotation-driven/>

基于spring注解实现定时任务

在springmvn中配置只扫描@controller注解,springcontext不扫描,@controller注解,这两个配置文件springcontext为主配置文件,springcontext和springmvc的主从配置内容可以参考http://blog.csdn.net/fasure_smile/article/details/52701850

<!-- 使用Annotation自动注册Bean,只扫描@Controller -->
    <context:component-scan base-package="com.***.***" use-default-filters="false"><!-- base-package 如果多个,用“,”分隔 -->
        <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" />
    </context:component-scan>

步骤二:
具体类:

@Controller
public class QuatzTest {
//启动时执行一次,后面每隔3秒执行一次
    @Scheduled(fixedRate = 1000 * 3)
     public void print() {
      System.out.println("timer running...");
     }

}

这样在项目启动后每隔3s就会进行一次输出。

注意:由于springmvc.xml文件中配置了只扫描@controller注解,所以此处类上面只能用@controller而不能用@Component等其他注解。

此外:
@Scheduled这个注解,它可配置多个属性:cron\fixedDelay\fixedRate。
其中,cron为每到什么时候执行一次;fixedDelay延时多少毫秒,多少毫秒执行一次;fixedRate为每隔一段时间执行一次;
(PS:貌似是这样具体待确认,其中cron的写法,可参见:http://www.cnblogs.com/HD/p/4205937.html

有错误的地方希望多多指正。