update quartz改为保留一个版本
This commit is contained in:
parent
83922c5737
commit
b6443e0c01
2
pom.xml
2
pom.xml
@ -250,7 +250,7 @@
|
||||
<version>${tlog.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 定时任务 @deprecated 3.5.0删除 迁移至xxl-job -->
|
||||
<!-- 定时任务 @deprecated 3.4.0删除 迁移至xxl-job -->
|
||||
<dependency>
|
||||
<groupId>com.ruoyi</groupId>
|
||||
<artifactId>ruoyi-quartz</artifactId>
|
||||
|
@ -41,7 +41,7 @@
|
||||
<artifactId>ruoyi-system</artifactId>
|
||||
</dependency>
|
||||
|
||||
<!-- 定时任务 @deprecated 3.5.0删除 迁移至xxl-job -->
|
||||
<!-- 定时任务 @deprecated 3.4.0删除 迁移至xxl-job -->
|
||||
<!-- <dependency>-->
|
||||
<!-- <groupId>com.ruoyi</groupId>-->
|
||||
<!-- <artifactId>ruoyi-quartz</artifactId>-->
|
||||
|
@ -3,7 +3,7 @@ package com.ruoyi.common.constant;
|
||||
/**
|
||||
* 任务调度通用常量
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author ruoyi
|
||||
*/
|
||||
public class ScheduleConstants
|
||||
|
@ -18,7 +18,7 @@ import java.util.concurrent.locks.ReentrantReadWriteLock;
|
||||
* 使用方法 配置文件开启 mybatis-plus 二级缓存
|
||||
* 在 XxxMapper.java 类上添加注解 @CacheNamespace(implementation = MybatisPlusRedisCache.class, eviction = MybatisPlusRedisCache.class)
|
||||
*
|
||||
* @deprecated 3.5.0删除 推荐使用spirng-cache
|
||||
* @deprecated 3.4.0删除 推荐使用spirng-cache
|
||||
* @author Lion Li
|
||||
*/
|
||||
@Slf4j
|
||||
|
@ -3,7 +3,7 @@ package com.ruoyi.common.exception.job;
|
||||
/**
|
||||
* 计划策略异常
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author ruoyi
|
||||
*/
|
||||
public class TaskException extends Exception
|
||||
|
@ -5,7 +5,7 @@ import org.springframework.context.annotation.Configuration;
|
||||
/**
|
||||
* 定时任务配置
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author Lion Li
|
||||
*/
|
||||
@Deprecated
|
||||
|
@ -23,7 +23,7 @@ import java.util.List;
|
||||
/**
|
||||
* 调度任务信息操作处理
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author ruoyi
|
||||
*/
|
||||
@RestController
|
||||
|
@ -18,7 +18,7 @@ import java.util.List;
|
||||
/**
|
||||
* 调度日志操作处理
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author ruoyi
|
||||
*/
|
||||
@RestController
|
||||
|
@ -23,7 +23,7 @@ import java.util.Map;
|
||||
/**
|
||||
* 定时任务调度表 sys_job
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author ruoyi
|
||||
*/
|
||||
|
||||
|
@ -16,7 +16,7 @@ import java.util.Map;
|
||||
/**
|
||||
* 定时任务调度日志表 sys_job_log
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author ruoyi
|
||||
*/
|
||||
|
||||
|
@ -6,7 +6,7 @@ import com.ruoyi.quartz.domain.SysJobLog;
|
||||
/**
|
||||
* 调度任务日志信息 数据层
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author ruoyi
|
||||
*/
|
||||
public interface SysJobLogMapper extends BaseMapperPlus<SysJobLog> {
|
||||
|
@ -6,7 +6,7 @@ import com.ruoyi.quartz.domain.SysJob;
|
||||
/**
|
||||
* 调度任务信息 数据层
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author ruoyi
|
||||
*/
|
||||
public interface SysJobMapper extends BaseMapperPlus<SysJob> {
|
||||
|
@ -9,7 +9,7 @@ import java.util.List;
|
||||
/**
|
||||
* 定时任务调度日志信息信息 服务层
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author ruoyi
|
||||
*/
|
||||
public interface ISysJobLogService extends IService<SysJobLog> {
|
||||
|
@ -11,7 +11,7 @@ import java.util.List;
|
||||
/**
|
||||
* 定时任务调度信息信息 服务层
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author ruoyi
|
||||
*/
|
||||
public interface ISysJobService extends IService<SysJob> {
|
||||
|
@ -17,7 +17,7 @@ import java.util.Map;
|
||||
/**
|
||||
* 定时任务调度日志信息 服务层
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author ruoyi
|
||||
*/
|
||||
@Service
|
||||
|
@ -26,7 +26,7 @@ import java.util.List;
|
||||
/**
|
||||
* 定时任务调度信息 服务层
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author ruoyi
|
||||
*/
|
||||
@Service
|
||||
|
@ -7,7 +7,7 @@ import org.springframework.stereotype.Component;
|
||||
/**
|
||||
* 定时任务调度测试
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author ruoyi
|
||||
*/
|
||||
@Component("ryTask")
|
||||
|
@ -20,7 +20,7 @@ import java.util.Date;
|
||||
/**
|
||||
* 抽象quartz调用
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author ruoyi
|
||||
*/
|
||||
public abstract class AbstractQuartzJob implements Job
|
||||
|
@ -8,7 +8,7 @@ import java.util.Date;
|
||||
/**
|
||||
* cron表达式工具类
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author ruoyi
|
||||
*
|
||||
*/
|
||||
|
@ -11,7 +11,7 @@ import com.ruoyi.quartz.domain.SysJob;
|
||||
/**
|
||||
* 任务执行工具
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author ruoyi
|
||||
*/
|
||||
public class JobInvokeUtil
|
||||
|
@ -7,7 +7,7 @@ import com.ruoyi.quartz.domain.SysJob;
|
||||
/**
|
||||
* 定时任务处理(禁止并发执行)
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author ruoyi
|
||||
*
|
||||
*/
|
||||
|
@ -6,7 +6,7 @@ import com.ruoyi.quartz.domain.SysJob;
|
||||
/**
|
||||
* 定时任务处理(允许并发执行)
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author ruoyi
|
||||
*
|
||||
*/
|
||||
|
@ -18,7 +18,7 @@ import com.ruoyi.quartz.domain.SysJob;
|
||||
/**
|
||||
* 定时任务工具类
|
||||
*
|
||||
* @deprecated 3.5.0删除 迁移至xxl-job
|
||||
* @deprecated 3.4.0删除 迁移至xxl-job
|
||||
* @author ruoyi
|
||||
*
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user