使用Spring@Scheduled(cron = “0 0/10 * * * ?”) 实现定时任务

发布时间:2024-11-20 15:30

职场实用技巧:《从0到1》 #生活乐趣# #阅读乐趣# #新书推荐#

最新推荐文章于 2024-10-19 21:58:14 发布

曾卫 于 2019-12-25 16:12:38 发布

1.Spring配置文件xmlns加入:

xmlns:task="http://www.springframework.org/schema/task" 1 2.xsi加入:

http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.1.xsd 12 3.任务扫描注解:

<task:executor id="executor" pool-size="5" /> <task:scheduler id="scheduler" pool-size="10" /> <task:annotation-driven executor="executor" scheduler="scheduler" /> 123 4.代码实现:

@Scheduled(cron = "0 0/10 * * * ?") //每隔十分钟执行一次 public void updateIndex(){ logger.info("test:{}", test); } 1234 5.cron表达式,使用时查询即可

网址:使用Spring@Scheduled(cron = “0 0/10 * * * ?”) 实现定时任务 https://www.yuejiaxmz.com/news/view/156404

相关内容

Spring Boot 事务的简单使用
在区间(0,l)上定义函数f(x)=x.试根据条件f′(0)=0,f(l)=0将
数(0)=0
timetask定时任务
进程和计划任务管理
《0
“0糖0脂0卡”,一切归“零”后,消费者真正需要的是什么?
自有品牌App如何开发场景自动化
如何开发设备端本地定时功能
《开展社区0

随便看看