This commit is contained in:
Looly
2023-12-17 22:45:40 +08:00
parent 5eaa0988b1
commit 1eacd29d99
53 changed files with 583 additions and 48 deletions

View File

@@ -17,7 +17,7 @@ import org.dromara.hutool.core.exception.HutoolException;
/**
* 定时任务异常
*
* @author xiaoleilu
* @author Looly
*/
public class CronException extends HutoolException {
private static final long serialVersionUID = 1L;

View File

@@ -28,7 +28,7 @@ import java.util.concurrent.locks.ReentrantLock;
* 此工具持有一个全局{@link Scheduler},所有定时任务在同一个调度器中执行<br>
* {@link #setMatchSecond(boolean)} 方法用于定义是否使用秒匹配模式如果为true则定时任务表达式中的第一位为秒否则为分默认是分
*
* @author xiaoleilu
* @author Looly
*
*/
public class CronUtil {