码迷,mamicode.com
首页 > 编程语言 > 详细

一个简单的Spring定时器例子 注解方式

时间:2014-07-22 22:37:52      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   使用   

首先在applicationContext.xml中增加 

文件头中增加一条 

xmlns:task="http://www.springframework.org/schema/task"
xsi:schemaLocation 中增加一条 http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd
<beans xmlns:task="http://www.springframework.org/schema/task"
    http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd" >

<!-- 定义使用注解自动扫描的包 -->
<context:component-scan base-package="xxx" /> 定时器必须属于扫描的包中

<!-- 打开定时器开关 -->

<task:annotation-driven/>

下面是定时器的写法

fixedDelay = 5000 表示每隔5秒执行
import java.text.SimpleDateFormat;
import java.util.Date;

import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

@Component  
public class TestJob {
    @Scheduled(fixedDelay = 5000) 
    public void test()
    {
        System.out.println("job 开始执行"+new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()));
    } 
}

一个简单的Spring定时器例子 注解方式,布布扣,bubuko.com

一个简单的Spring定时器例子 注解方式

标签:style   blog   http   java   color   使用   

原文地址:http://www.cnblogs.com/mingf123/p/3861094.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!