spring schedule定时任务

本文详细介绍了如何在Spring项目中配置和使用定时任务,包括配置文件的修改、定时任务类的创建、注意事项和Cron表达式的使用,提供了一个每10分钟执行一次的示例。
摘要由CSDN通过智能技术生成

1      springschedule定时任务

1.1     前提

spring项目已正常跑通;

1.2     spring配置文件修改

xmlns增加:

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

xsi:schemaLocation增加:

http://www.springframework.org/schema/task  

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

 

注解扫描增加定时任务类所在的包名(红字部分):

<tx:annotation-driven/>

       <context:annotation-config/>

<context:component-scanbase-package="com.cmcc.cxb.sec.omss.dal,com.cmcc.cxb.sec.omss.service,com.cmcc.cxb.sec.omss.security,com.cmcc.cxb.sec.omss.schedule"/>

 

增加定时任务扫描:

       <!--Enables the Spring Task @Scheduled programming model --> 

   <task:executor id="executor" pool-size="5"/> 

   <task:scheduler id="scheduler" pool-size="10"/> 

<task:annotation-drivenexecut

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值