@scheduled定时任务

来源:互联网 发布:139端口基于什么协议 编辑:程序博客网 时间:2024/05/29 12:06

最近做项目遇到需要用到定式服务,在一定时间间隔或者在某个时间去执行一套逻辑,在这块找到了一个不错的方法,对比timer,我觉得他用起来更方便。
来看相关配置:

配置spring.xml

xmlns:task="http://www.springframework.org/schema/task"

然后xsi:schemaLocation多加以下的内容:

http://www.springframework.org/schema/taskhttp://www.springframework.org/schema/task/spring-task-3.1.xsd

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

<task:annotation-driven/>

我的配置扫描位置是:

 <!-- 扫描文件(自动将service层注入) --><context:component-scan base-package="qbd.service..*,qbq.test"/><task:annotation-driven scheduler="lbsScheduler" mode="proxy" executor="lbsExecutor"/>    <task:executor id="lbsExecutor" pool-size="5"/>    <task:scheduler id="lbsScheduler" pool-size="5"/>

在service层增加一个接口:

public interface IMyTestService {       public void myTest();}

然后再serviceImpl中加入它的实现:

@Component  //import org.springframework.stereotype.Component;public class MyTestServiceImpl  implements IMyTestService {@Scheduled(cron="0/5 * *  * * ? ")   //每5秒运行一次      @Override      public void myTest(){            System.out.println("进入测试");      }}

须要注意的几点:

1、spring的@Scheduled注解 须要写在实现上、

2、 定时器的任务方法不能有返回值(假设有返回值,spring初始化的时候会告诉你有个错误、须要设定一个proxytargetclass的某个值为true、详细就去百度google吧)

3、实现类上要有组件的注解@Component

关于@Scheduled(cron=”0/5 * * * * ? “) 能表达很多的不同的时间间隔或者定时时间。我举几种:

CRON表达式 含义
“0 0 12 * * ?” 每天中午十二点触发
“0 15 10 ? * *” 每天早上10:15触发
“0 15 10 * * ?” 每天早上10:15触发
“0 15 10 * * ? *” 每天早上10:15触发
“0 15 10 * * ? 2005” 2005年的每天早上10:15触发
“0 * 14 * * ?” 每天从下午2点開始到2点59分每分钟一次触发
“0 0/5 14 * * ?” 每天从下午2点開始到2:55分结束每5分钟一次触发
“0 0/5 14,18 * * ?” 每天的下午2点至2:55和6点至6点55分两个时间段内每5分钟一次触发
“0 0-5 14 * * ?” 每天14:00至14:05每分钟一次触发
“0 10,44 14 ? 3 WED” 三月的每周三的14:10和14:44触发
“0 15 10 ? * MON-FRI” 每一个周一、周二、周三、周四、周五的10:15触发

0 0
原创粉丝点击