使用quartz进行容器启动时登陆接口服务器和接口服务器进行心跳连接
1、下载quartz的相应jar包
2、增加spring配置文件(applicationContext-quartz.xml)
内容如下:
<?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:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd"> <!-- 需要定时执行的类 --> <bean id="heartTask" class="com.tf.user.util.BoHeartTask"> <property name="heartHref" value="http://localhost:8080/ScientificMarketing/bo_heart.jsp"></property> <property name="loginHref" value="http://localhost:8080/ScientificMarketing/user.do?action=bologin"></property> </bean> <!-- 心跳任务--> <bean id="taskJob" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> <property name="targetObject" ref="heartTask"></property> <property name="targetMethod"> <value>doHeart</value> </property> </bean> <!-- 登陆任务 --> <bean id="loginJob" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> <property name="targetObject" ref="heartTask"></property> <property name="targetMethod"> <value>doFirstLogin</value> </property> </bean> <!-- 每15分钟心跳一次--> <bean id="runTime" class="org.springframework.scheduling.quartz.CronTriggerBean"> <property name="jobDetail"> <ref bean="taskJob" /> </property> <property name="cronExpression"> <value>0 0/15 * * * ?</value> </property> </bean> <!-- 服务器启动后延迟1秒发登陆请求 --> <bean id="loginTime" class="org.springframework.scheduling.quartz.SimpleTriggerBean"> <property name="jobDetail"> <ref bean="loginJob" /> </property> <property name="startDelay" value="1000" /> <property name="repeatInterval" value="0" /> <property name="repeatCount" value="0" /> </bean> <!-- 最终启动的配置 --> <bean id="startQuertz" lazy-init="false" autowire="no" class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> <property name="triggers"> <list> <ref bean="runTime" /> <ref bean="loginTime" /> </list> </property> </bean> </beans>
其中配置任务的定时执行的有2个类可供选择:
org.springframework.scheduling.quartz.CronTriggerBean
org.springframework.scheduling.quartz.SimpleTriggerBean
CronTriggerBean类的主要属性:
jobDetail:目标执行job的bean
cronExpression:一个表达式,主要配置多久循环一次
SimpleTriggerBean的主要属性:
jobDetail:目标执行job的bean
startDelay:第一次执行的时间,延迟多久执行
repeatInterval:任务执行周期
repeatCount:执行次数
任务类BoHeartTask.java
package com.tf.user.util; import java.io.IOException; import java.net.HttpURLConnection; import java.net.URL; import java.text.SimpleDateFormat; import java.util.Date; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; public class BoHeartTask { private static Log log = LogFactory.getLog(BoHeartTask.class); private String heartHref; private String loginHref; public void setLoginHref(String loginHref) { this.loginHref = loginHref; } public void setHeartHref(String heartHref) { this.heartHref = heartHref; } public void doFirstLogin() throws IOException{ URL url = new URL(loginHref); HttpURLConnection con = (HttpURLConnection)url.openConnection(); con.setReadTimeout(30000); con.connect(); int state = con.getResponseCode();//网页状态码 String logStr = "----BO登陆连接,状态码:"+state+",时间:"+new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()); System.out.println(logStr); log.info(logStr); } public void doHeart() throws IOException{ URL url = new URL(heartHref); HttpURLConnection con = (HttpURLConnection)url.openConnection(); con.setReadTimeout(30000); con.connect(); int state = con.getResponseCode();//网页状态码 String logStr = "----心跳链接BO,状态码:"+state+",时间:"+new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()); System.out.println(logStr); log.info(logStr); } }
cronExpression配置说明
字段 | 允许值 | 允许的特殊字符 | ||
---|---|---|---|---|
秒 |
0-59 |
, - * / |
||
分 |
0-59 |
, - * / |
||
小时 |
0-23 |
, - * / |
||
日期 |
1-31 |
, - * ? / L W C |
||
月份 |
1-12 或者 JAN-DEC |
, - * / |
||
星期 |
1-7 或者 SUN-SAT |
, - * ? / L C # |
||
年(可选) |
留空, 1970-2099 |
, - * / |
表达式 | 意义 | |
---|---|---|
"0 0 12 * * ?" |
每天中午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期间的每1分钟触发 |
|
"0 0/5 14 * * ?" |
在每天下午2点到下午2:55期间的每5分钟触发 |
|
"0 0/5 14,18 * * ?" |
在每天下午2点到2:55期间和下午6点到6:55期间的每5分钟触发 |
|
"0 0-5 14 * * ?" |
在每天下午2点到下午2:05期间的每1分钟触发 |
|
"0 10,44 14 ? 3 WED" |
每年三月的星期三的下午2:10和2:44触发 |
|
"0 15 10 ? * MON-FRI" |
周一至周五的上午10:15触发 |
|
"0 15 10 15 * ?" |
每月15日上午10:15触发 |
|
"0 15 10 L * ?" |
每月最后一日的上午10:15触发 |
|
"0 15 10 ? * 6L" |
每月的最后一个星期五上午10:15触发 |
|
"0 15 10 ? * 6L 2002-2005" |
2002年至2005年的每月的最后一个星期五上午10:15触发 |
|
"0 15 10 ? * 6#3" |
每月的第三个星期五上午10:15触发 |
星期的简写:
周一 MON 周二 TUE 周三 WED 周四 THU 周五FRI 周六 SAT 周日 SUN
特殊字符 | 意义 | |
---|---|---|
* |
表示所有值; |
|
? |
表示未说明的值,即不关心它为何值; |
|
- |
表示一个指定的范围; |
|
, |
表示附加一个可能值; |
|
/ |
符号前表示开始时间,符号后表示每次递增的值; |
|
L("last") |
("last") "L" 用在day-of-month字段意思是 "这个月最后一天";用在 day-of-week字段, 它简单意思是 "7" or "SAT"。如果在day-of-week字段里和数字联合使用,它的意思就是 "这个月的最后一个星期几" – 例如: "6L" means "这个月的最后一个星期五". 当我们用“L”时,不指明一个列表值或者范围是很重要的,不然的话,我们会得到一些意想不到的结果。 |
|
W("weekday") |
只能用在day-of-month字段。用来描叙最接近指定天的工作日(周一到周五)。例如:在day-of-month字段用“15W”指“最接近这个月第15天的工作日”,即如果这个月第15天是周六,那么触发器将会在这个月第14天即周五触发;如果这个月第15天是周日,那么触发器将会在这个月第16 天即周一触发;如果这个月第15天是周二,那么就在触发器这天触发。注意一点:这个用法只会在当前月计算值,不会越过当前月。“W”字符仅能在day- of-month指明一天,不能是一个范围或列表。也可以用“LW”来指定这个月的最后一个工作日。 |
|
# |
只能用在day-of-week字段。用来指定这个月的第几个周几。例:在day-of-week字段用"6#3"指这个月第3个周五(6指周五,3指第3个)。如果指定的日期不存在,触发器就不会触发。 |
|
C |
指和calendar联系后计算过的值。例:在day-of-month 字段用“5C”指在这个月第5天或之后包括calendar的第一天;在day-of-week字段用“1C”指在这周日或之后包括calendar的第一天。 |
在MONTH和Day Of Week字段里对字母大小写不敏感