Xml代碼 spring
<?xml version="1.0" encoding="UTF-8"?> spa
<beans xmlns="http://www.springframework.org/schema/beans" component
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xml
xmlns:context="http://www.springframework.org/schema/context" ci
xmlns:tx="http://www.springframework.org/schema/tx" it
xmlns:task="http://www.springframework.org/schema/task" io
xsi:schemaLocation=" table
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd ast
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd 配置
http://www.springframework.org/schema/context
http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.0.xsd"
default-lazy-init="false">
<context:annotation-config />
<!―spring掃描註解的配置 -->
<context:component-scan base-package="com.gy.mytask" />
<!―開啓這個配置,spring才能識別@Scheduled註解 -->
<task:annotation-driven scheduler="qbScheduler" mode="proxy"/>
<task:scheduler id="qbScheduler" pool-size="10"/>
字段 | 容許值 | 容許的特殊字符 |
秒 | 0-59 | , - * / |
分 | 0-59 | , - * / |
小時 | 0-23 | , - * / |
日期 | 1-31 | , - * ? / L W C |
月份 | 1-12 或者 JAN-DEC | , - * / |
星期 | 1-7 或者 SUN-SAT | , - * ? / L C # |
年(可選) | 留空, 1970-2099 | , - * / |
特殊字符 | 意義 |
* | 表示全部值; |
? | 表示未說明的值,即不關心它爲什麼值; |
- | 表示一個指定的範圍; |
, | 表示附加一個可能值; |
/ | 符號前表示開始時間,符號後表示每次遞增的值; |
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字段裏對字母大小寫不敏感 。
"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觸發 |