记录下Spring自带的定时任务用法。
spring中使用定时任务
基于xml配置文件使用定时任务
首先配置spring开启定时任务
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:task="http://www.springframework.org/schema/task" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd"> <task:annotation-driven /> <!-- 定时器开关--> <bean id="myTask" class="com.spring.task.MyTask"></bean> <task:scheduled-tasks> <!-- 这里表示的是每隔五秒执行一次 --> <task:scheduled ref="myTask" method="show" cron="*/5 * * * * ?" /> <task:scheduled ref="myTask" method="print" cron="*/10 * * * * ?"/> </task:scheduled-tasks> <!-- 自动扫描的包名 --> <context:component-scan base-package="com.spring.task" /> </beans>
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
软考中级精品资料免费领
- 历年真题答案解析
- 备考技巧名师总结
- 高频考点精准押题
- 资料下载
- 历年真题
193.9 KB下载数265
191.63 KB下载数245
143.91 KB下载数1148
183.71 KB下载数642
644.84 KB下载数2756
相关文章
发现更多好内容猜你喜欢
AI推送时光机Spring Task定时任务的配置和使用详解
后端开发2023-05-31
Spring-Task定时任务的使用介绍
后端开发2022-11-13
使用spring-task定时任务动态配置修改执行时间
后端开发2024-04-02
如何使用spring-task定时任务动态配置修改执行时间
后端开发2023-06-25
如何配置Spring中的定时任务
后端开发2023-05-31
Spring Boot 配置 Quartz 定时任务的方法
后端开发2024-04-02
详解使用python crontab设置linux定时任务
后端开发2022-06-04
Linux下的定时任务和延时任务的详解
后端开发2022-06-04
详解Spring配置及事务的使用
后端开发2024-04-02
Django定时任务Django-crontab的使用详解
后端开发2024-04-02
详解定时任务框架Quartz的使用
后端开发2023-02-13
使用restyQuartz执行定时任务的配置方法
后端开发2024-04-02
详解spring-boot actuator(监控)配置和使用
后端开发2023-05-31
Spring使用注解和配置文件配置事务
后端开发2024-04-02
详解Python使用apscheduler定时执行任务
后端开发2024-04-02
Node.js定时任务之node-schedule使用详解
后端开发2022-11-13
Spring声明式事务配置使用详解
后端开发2024-04-02
详解Linux定时任务Crontab的介绍与使用
后端开发2024-04-02
咦!没有更多了?去看看其它编程学习网 内容吧