Quartz sched--crontrigger cron expression

Source: Internet
Author: User

Http://www.quartz-scheduler.org/documentation/quartz-1.x/tutorials/crontrigger

Online expression generator:

Http://www.cronmaker.com/

Introduction

CronIs a UNIX tool that has been around for a long time, so its scheduling capabilities are powerful and proven.CrontriggerClass is based on the scheduling capabilities of cron.

CrontriggerUses "cron expressions", which are able to create firing schedules such as: "At am every Monday through Friday" or "at AM every last Friday of the month ".

Cron expressions are powerful, but can be pretty confusing. this tutorial aims to take some of the mystery out of creating a Cron expression, giving users a resource which they can visit before having to ask in a forum or mailing list.

Format

A cron expression is a string comprised of 6 or 7 fields separated by white space. fields can contain any of the allowed values, along with varous combinations of the allowed special characters for that field. the fields are as follows:

Field name Mandatory Allowed values Allowed special characters
Seconds Yes 0-59 ,-*/
Minutes Yes 0-59 ,-*/
Hours Yes 0-23 ,-*/
Day of month Yes 1-31 ,-*? /L w
Month Yes 1-12 or JAN-DEC ,-*/
Day of week Yes 1-7 or sun-Sat ,-*? /L #
Year No Empty, 1970-2099 ,-*/

So cron expressions can be as simple as this:****? *

Or more complex, like this:0/5, 3 *? Jan, MAR, SEP MON-FRI 2002-2010

Special characters
  • *("All values")-Used to select all values within a field. For example ,""In the minute field means *" every minute".

  • ?("No specific value")-Useful when you need to specify something in one of the two fields in which the character is allowed, but not the other. for example, if I want my trigger to fire on a special day of the month (say, the 10th), but don't care what day of the week that happens to be, I wocould put "10" in the day-of-month field, and "? "In the Day-of-week field. See the examples below for clarification.

  • --Used to specify ranges. For example, "10-12" in the hour field means"The hours 10, 11 and 12".

  • ,-Used to specify additional values. For example, "mon, wed, Fri" in the day-of-week field means"The days Monday, Wednesday, and Friday".

  • /-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". You can also specify '/' After''Character-in this case''Is equivalent to having '0' before the'/'. '000000' in the day-of-month field means"Fire every 3 days starting on the first day of the month".

  • L("Last")-Has different meaning in each of the two fields in which it is allowed. 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". When using the 'l' option, it is important not to specify lists, or ranges of values, as you'll get confusing results.

  • W("Weekday")-Used to specify the weekday (Monday-Friday) nearest the given day. as an example, if you were to specify "15 W" 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 "1 W" 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.

The 'l' and 'w' characters can also be combined in the day-of-month field to yield 'lw', which translates to * "Last weekday of the Month "*.

  • #-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 nth 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.

The legal characters and the names of months and days of the week are not case sensitive.MonIs the sameMon.

Examples

Here are some full examples:

Expression Meaning
0 0 12 **? Fire at 12 pm (noon) every day
0 15 10? ** Fire at 10: 15 am every day
0 15 10 **? Fire at 10: 15 am every day
0 15 10 **? * Fire at 10: 15 am every day
0 15 10 **? 2005 Fire at am every day during the year 2005
0*14 **? Fire every minute starting at 2 and ending at :59 pm, every day
0 0/5 14 **? Fire every 5 minutes starting at 2 and ending at :55 pm, every day
0 0/5 **? Fire every 5 minutes starting at 2 and ending at 6, and fire every 5 minutes starting at pm and ending at, every day
0 0-5 14 **? Fire every minute starting at 2 and ending at :05 pm, every day
0 10, 44 14? 3 wed Fire at pm and at pm every Wednesday in the month of March.
0 15 10? * MON-FRI Fire at 10: 15 am every Monday, Tuesday, Wednesday, Thursday and Friday
0 15 10 15 *? Fire at AM on the 15th day of every month
0 15 10 L *? Fire at 10:15 AM on the last day of every month
0 15 10? * 6l Fire at 10:15 AM on the last Friday of every month
0 15 10? * 6l Fire at 10:15 AM on the last Friday of every month
0 15 10? * 6l 2002-2005 Fire at AM on every last Friday of every month during the years 2002,200 3, 2004 and 2005
0 15 10? * 6 #3 Fire at 10: 15 am on the third Friday of every month
0 0 12 1/5 *? Fire at 12 pm (noon) every 5 days every month, starting on the first day of the month.
0 11 11 11 11? Fire every November 11th at 11 am.

Pay attention to the effects '? 'And' * 'in the day-of-week and day-of-month fields!

Notes
  • Support for specifying both a day-of-week and a day-of-month value is not complete (you must currently use '? 'Character in one of these fields ).
  • Be careful when setting fire times between mid-night and am-"Daylight Savings" can cause a skip or a repeat depending on whether the time moves back or jumps forward.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.