Cron expression online verification tool

Introduction

In back-end development, scheduled tasks are usually used. Cron expressions can well describe the execution time of scheduled tasks. This article mainly introduces how to use the Cron expression tool in the Smart-tools toolbox to generate and verify Quartz and Crontab expressions online.

Cron expression tool address: SmartTools - Smart Development Toolbox

Cron expression

Format: {seconds} {minutes} {hours} {date} {month} {week} {year (can be empty)}

Field

allowance

allowed special characters

Second

0-59

, - * /

point

0-59

, - * /

Hour

0-23

, - * /

date

1-31

, - * ? / L W C

month

1-12 or JAN-DEC

, - * /

Week

1-7 or SUN-SAT

, - * ? /LC#

Year (can be empty)

Leave blank, 1970-2099

, - * /

in,

"*" means trigger at any time

"," means triggering at the specified time point;

"-" means touching within the specified time period;

"/" represents the trigger step (step), the value before "/" represents the initial value ("*" is equivalent to "0"), and the value after represents the offset;

Quartz

Quartz is an open source job scheduling framework written entirely in Java, providing a simple yet powerful mechanism for task scheduling for Java applications. Quartz's cron expressions are accurate to seconds. For example,* * * * * ?

Crontab

Crontab is a scheduled task that comes with the Linux system and is used to set up local scripts for periodic execution. Crontab's cron expressions are only accurate to the minute. For example,* * * * ?

Cron online expression tool

The Cron expression online verification tool in the Smart-tools toolbox has the following features:

  • Supports visual configuration of Cron expressions;
  • Supports online verification of Cron expressions and displays the last 10 execution tasks.

Here are some specific examples for you.

Example 1: * 0/5 * * * ?Execute Quartz task every 5 minutes

Example 2: * 12 * * ?Execute Linux Crontan scheduled task at 12 noon every day

Summarize

This article briefly introduces how to use the Cron expression online verification tool provided in the Smart-tools toolbox.

Guess you like

Origin blog.csdn.net/tanjie_123/article/details/126998339