/*
* All content copyright Terracotta, Inc., unless otherwise indicated. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
*/
package com.xxl.job.admin.core.cron;
import java.io.Serializable;
import java.text.ParseException;
import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Locale;
import java.util.Map;
import java.util.SortedSet;
import java.util.StringTokenizer;
import java.util.TimeZone;
import java.util.TreeSet;
/**
* Provides a parser and evaluator for unix-like cron expressions. Cron
* expressions provide the ability to specify complex time combinations such as
* "At 8:00am every Monday through Friday" or "At 1:30am every
* last Friday of the month".
* <P>
* Cron expressions are comprised of 6 required fields and one optional field
* separated by white space. The fields respectively are described as follows:
*
* <table cellspacing="8">
* <tr>
* <th align="left">Field Name</th>
* <th align="left"> </th>
* <th align="left">Allowed Values</th>
* <th align="left"> </th>
* <th align="left">Allowed Special Characters</th>
* </tr>
* <tr>
* <td align="left"><code>Seconds</code></td>
* <td align="left"> </th>
* <td align="left"><code>0-59</code></td>
* <td align="left"> </th>
* <td align="left"><code>, - * /</code></td>
* </tr>
* <tr>
* <td align="left"><code>Minutes</code></td>
* <td align="left"> </th>
* <td align="left"><code>0-59</code></td>
* <td align="left"> </th>
* <td align="left"><code>, - * /</code></td>
* </tr>
* <tr>
* <td align="left"><code>Hours</code></td>
* <td align="left"> </th>
* <td align="left"><code>0-23</code></td>
* <td align="left"> </th>
* <td align="left"><code>, - * /</code></td>
* </tr>
* <tr>
* <td align="left"><code>Day-of-month</code></td>
* <td align="left"> </th>
* <td align="left"><code>1-31</code></td>
* <td align="left"> </th>
* <td align="left"><code>, - * ? / L W</code></td>
* </tr>
* <tr>
* <td align="left"><code>Month</code></td>
* <td align="left"> </th>
* <td align="left"><code>0-11 or JAN-DEC</code></td>
* <td align="left"> </th>
* <td align="left"><code>, - * /</code></td>
* </tr>
* <tr>
* <td align="left"><code>Day-of-Week</code></td>
* <td align="left"> </th>
* <td align="left"><code>1-7 or SUN-SAT</code></td>
* <td align="left"> </th>
* <td align="left"><code>, - * ? / L #</code></td>
* </tr>
* <tr>
* <td align="left"><code>Year (Optional)</code></td>
* <td align="left"> </th>
* <td align="left"><code>empty, 1970-2199</code></td>
* <td align="left"> </th>
* <td align="left"><code>, - * /</code></td>
* </tr>
* </table>
* <P>
* The '*' character is used to specify all values. For example, "*"
* in the minute field means "every minute".
* <P>
* The '?' character is allowed for the day-of-month and day-of-week fields. It
* is used to specify 'no specific value'. This is useful when you need to
* specify something in one of the two fields, but not the other.
* <P>
* The '-' character is used to specify ranges For example "10-12" in
* the hour field means "the hours 10, 11 and 12".
* <P>
* The ',' character is used to specify additional values. For example
* "MON,WED,FRI" in the day-of-week field means "the days Monday,
* Wednesday, and Friday".
* <P>
* The '/' character is used to specify increments. For example "0/15"
* in the seconds field means "the seconds 0, 15, 30, and 45". And
* "5/15" in the seconds field means "the seconds 5, 20, 35, and
* 50". Specifying '*' before the '/' is equivalent to specifying 0 is
* the value to start with. Essentially, for each field in the expression, there
* is a set of numbers that can be turned on or off. For seconds and minutes,
* the numbers range from 0 to 59. For hours 0 to 23, for days of the month 0 to
* 31, and for months 0 to 11 (JAN to DEC). The "/" character simply helps you turn
* on every "nth" value in the given set. Thus "7/6" in the
* month field only turns on month "7", it does NOT mean every 6th
* month, please note that subtlety.
* <P>
* The 'L' character is allowed for the day-of-month and day-of-week fields.
* This character is short-hand for "last", but it has different
* meaning in each of the two fields. For example, the value "L" in
* the day-of-month field means "the last day of the month" - day 31
* for January, day 28 for February on non-leap years. If used in the
* day-of-week field by itself, it simply means "7" or
* "SAT". But if used in the day-of-week field after another value, it
* means "the last xxx day of the month" - for example "6L"
* means "the last friday of the month". You can also specify an offset
* from the last day of the month, such as "L-3" which would mean the third-to-last
* day of the calendar month. <i>When using the 'L' option, it is important not to
* specify lists, or ranges of values, as you'll get confusing/unexpected results.</i>
* <P>
* The 'W' character is allowed for the day-of-month field. This character
* is used to specify the weekday (Monday-Friday) nearest the given day. As an
* example, if you were to specify "15W" as the value for the
* day-of-month field, the meaning is: "the nearest weekday to the 15th of
* the month". So if the 15th is a Saturday, the trigger will fire on
* Friday the 14th. If the 15th is a Sunday, the trigger will fire on Monday the
* 16th. If the 15th is a Tuesday, then it will fire on Tuesday the 15th.
* However if you specify "1W" as the value for day-of-month, and the
* 1st is a Saturday, the trigger will fire on Monday the 3rd, as it will not
* 'jump' over the boundary of a month's days. The 'W' character can only be
* specified when the day-of-month is a single day, not a range or list of days.
* <P>
* The 'L' and 'W' characters can also be combined for the day-of-month
* expression to yield 'LW', which translates to "last weekday of the
* month".
* <P>
* The '#' character is allowed for the day-of-week field. This character is
* used to specify "the nth" XXX day of the month. For example, the
* value of "6#3" in the day-of-week field means the third Friday of
* the month (day 6 = Friday and "#3" = the 3rd one in the month).
* Other examples: "2#1" = the first Monday of the month and
* "4#5" = the fifth Wednesday of the month. Note that if you specify
* "#5" and there is not 5 of the given day-of-week in the month, then
* no firing will occur that month. If the '#' character is used, there can
* only be one expression in the day-of-week field ("3#1,6#3" is
* not valid, since there are two expressions).
* <P>
* <!--The 'C' character is allowed for the day-of-month and day-of-week fields.
* This character is short-hand for "calendar". This means values are
* calculated against the associated calendar, if any. If no calendar is
* associated, then it is equivalent to having an all-inclusive calendar. A
* value of "5C" in the day-of-month field means "the first day included by the
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
xxl-job适配sqlite本地数据库及mysql数据库 可根据配置指定使用哪种数据库 (246个子文件)
bootstrap.min.css 119KB
AdminLTE.min.css 104KB
ionicons.min.css 50KB
_all-skins.min.css 41KB
font-awesome.min.css 30KB
layer.css 14KB
codemirror.css 8KB
daterangepicker.css 8KB
dataTables.bootstrap.min.css 4KB
pace-theme-flash.css 2KB
blue.css 2KB
show-hint.css 623B
Dockerfile 274B
Dockerfile 253B
fontawesome-webfont.eot 162KB
ionicons.eot 118KB
glyphicons-halflings-regular.eot 20KB
jobinfo.index.ftl 30KB
common.macro.ftl 10KB
jobgroup.index.ftl 9KB
user.index.ftl 9KB
joblog.index.ftl 8KB
jobcode.index.ftl 8KB
index.ftl 6KB
joblog.detail.ftl 2KB
login.ftl 2KB
help.ftl 1KB
common.exception.ftl 747B
loading-0.gif 6KB
loading-2.gif 2KB
loading-1.gif 701B
favicon.ico 4KB
CronExpression.java 60KB
XxlJobServiceImpl.java 21KB
JobScheduleHelper.java 16KB
XxlJobDynamicScheduler.java 14KB
EmbedServer.java 11KB
XxlJobTrigger.java 11KB
XxlJobExecutor.java 10KB
TriggerCallbackThread.java 9KB
JobGroupController.java 9KB
JobLogController.java 8KB
SampleXxlJob.java 8KB
SampleXxlJob.java 8KB
JobThread.java 8KB
ScriptUtil.java 7KB
ExecutorBizImpl.java 7KB
UserController.java 7KB
JobRegistryHelper.java 7KB
XxlJobHelper.java 7KB
JobLogReportHelper.java 6KB
JobInfoController.java 6KB
IpUtil.java 6KB
XxlJobRemotingUtil.java 6KB
ExecutorRegistryThread.java 5KB
XxlJobSpringExecutor.java 5KB
JobCompleteHelper.java 5KB
XxlJobFileAppender.java 5KB
JobTriggerPoolHelper.java 5KB
XxlJobInfo.java 5KB
EmailJobAlarm.java 5KB
FileUtil.java 5KB
DateUtil.java 4KB
JobLogFileCleanThread.java 4KB
XxlJobCompleter.java 4KB
XxlJobAdminConfig.java 4KB
JobFailMonitorHelper.java 4KB
LoginService.java 3KB
TriggerParam.java 3KB
ExecutorBizTest.java 3KB
LocalCacheUtil.java 3KB
JobCodeController.java 3KB
IndexController.java 3KB
ScriptJobHandler.java 3KB
ExecutorRouteLFU.java 3KB
SpringGlueFactory.java 3KB
FrameLessXxlJobConfig.java 3KB
XxlJobScheduler.java 3KB
ExecutorRouteConsistentHash.java 3KB
XxlJobLog.java 3KB
XxlJobInfoDaoTest.java 3KB
JobApiController.java 3KB
ExecutorRouteLRU.java 3KB
XxlJobContext.java 3KB
JacksonUtil.java 2KB
XxlJobConfig.java 2KB
GlueFactory.java 2KB
AdminBizTest.java 2KB
I18nUtil.java 2KB
GsonTool.java 2KB
XxlJobLogDao.java 2KB
CookieUtil.java 2KB
JobAlarmer.java 2KB
WebExceptionResolver.java 2KB
XxlJobSimpleExecutor.java 2KB
ExecutorRouteBusyover.java 2KB
JdkSerializeTool.java 2KB
PermissionInterceptor.java 2KB
ExecutorRouteStrategyEnum.java 2KB
ExecutorRouteFailover.java 2KB
共 246 条
- 1
- 2
- 3
资源评论
飞翔的佩奇
- 粉丝: 6123
- 资源: 1603
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功