关于spring中定时器的使用教程
前言
在很多实际的web应用中,都有需要定时实现的服务,如每天12点推送个新闻,每隔一个小时提醒用户休息一下眼睛,隔一段时间检测用户是否离线等等。
spring框架提供了对定时器的支持,通过配置文件就可以很好的实现定时器,只需要应用启动,就自动启动定时器。下面介绍一下具体做法。
第一种,使用xml配置的方法
前期工作,配置spring的开发环境(这里用到了spring的web应用包,需要导入)
首先创建定时器的任务类,定时器要做什么工作,就在这里写什么方法。
package org.time; import java.util.timertask; public class maintask extends timertask{ @override public void run() { system.out.println("检测用户是否掉线"); } }
接着在配置文件中对定时器进行配置。
<?xml version="1.0" encoding="utf-8"?> <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" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> <bean id="maintask" class="org.time.maintask"></bean> <!-- 注册定时器信息 --> <bean id="springtask" class="org.springframework.scheduling.timer.scheduledtimertask"> <!-- 延迟1秒执行首次任务 --> <property name="delay" value="1000"></property> <!-- 每隔2秒执行一次任务 --> <property name="period" value="2000"></property> <!-- 具体执行的任务 --> <property name="timertask" ref="maintask"></property> </bean> <!-- 配置任务调度器工厂 --> <bean id="timerfactory" class="org.springframework.scheduling.timer.timerfactorybean"> <property name="scheduledtimertasks"> <list> <ref bean="springtask"/> </list> </property> </bean> </beans>
最后还需要在web.xml中对配置信息进行注册:
<?xml version="1.0" encoding="utf-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <display-name></display-name> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> <listener> <listener-class>org.springframework.web.context.contextloaderlistener</listener-class> </listener> <context-param> <param-name>contextconfiglocation</param-name> <param-value>/web-inf/applicationcontext.xml</param-value> </context-param> </web-app>
这样就完成了定时器的配置,这时启动tomcat,观察控制台输出的结果:
第二种,使用注解的形式
(spring中一使用注解,感觉就是比其他方法方便了很多,代码减少了很多)
这里需要用到aop,需要引入aop类库
先看定时器的任务类:
package org.time; import org.springframework.scheduling.annotation.scheduled; import org.springframework.stereotype.component; @component public class maintask01{ @scheduled(cron = "0/3 * * * * ?") public void run() { system.out.println("推送消息来了"); } }
@scheduled(cron = "0/3 * * * * ?") 表示三秒推送一次
corn可以配置各种时段任务:
字段 |
值 |
特殊表示字符 |
年 |
一般为空,1970-2099 |
, - * / |
月 |
1-12 或者 jan-dec |
, - * / |
星期 |
1-7 或者 sun-sat |
, - * ? / l c # |
日 |
1-31 |
, - * ? / l w c |
时 |
0-23 |
, - * / |
分 |
0-59 |
, - * / |
秒 |
0-59 |
, - * / |
如: 配置每个工作日的10:20触发 :"0 20 10 ? * mon-fri"
配置文件:
<?xml version="1.0" encoding="utf-8"?> <beans xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context" xmlns:task="http://www.springframework.org/schema/task" xmlns="http://www.springframework.org/schema/beans" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd"> <context:annotation-config /> <!-- spring扫描注解的配置 --> <context:component-scan base-package="org.time" /> <task:annotation-driven scheduler="qbscheduler" mode="proxy"/> <task:scheduler id="qbscheduler" pool-size="10"/> </beans>
配置文件的头部信息中比上一个引入了
xmlns:task="http://www.springframework.org/schema/task" http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd
<task:annotation-driven scheduler="qbscheduler" mode="proxy"/>
<task:scheduler id="qbscheduler" pool-size="10"/>
这两句配置信息是必须要写的,这是spring识别@scheduled注解的关键
这这样简单的几句配置之后,开启服务,运行结果:
spring中使用注解的方法完成定时器,不需要集成其他父类定时器,使用简单方便!代码量少,功能也很强大!
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。
推荐阅读
-
PHP教程之PHP中shell脚本的使用方法
-
使用PHP中的日期和时间函数_PHP教程
-
关于Javascript中document.cookie的使用
-
iOS中谓词(NSPredicate)的基本入门使用教程
-
PHP中file_exists使用中遇到的问题小结,file_exists小结_PHP教程
-
python中关于获取日期的一些方法(仅供个人查看使用)
-
关于.net core 中的signalR组件的使用
-
关于ubuntu中mysqldump命令无法使用的问题
-
PHP中可以自动分割查询字符的Parse_str函数使用示例,parse_str示例_PHP教程
-
HTML5中Localstorage的使用教程