|
@@ -2,6 +2,7 @@ package com.scbfkj.uni.system;
|
|
|
|
|
|
import com.scbfkj.uni.library.UniReturnUtil;
|
|
|
import com.scbfkj.uni.process.DataBase;
|
|
|
+import org.springframework.scheduling.Trigger;
|
|
|
import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;
|
|
|
import org.springframework.scheduling.support.CronTrigger;
|
|
|
import org.springframework.scheduling.support.PeriodicTrigger;
|
|
@@ -39,23 +40,32 @@ public class ScheduleUtil {
|
|
|
throw new RuntimeException("采集服务不存在");
|
|
|
}
|
|
|
Map<String, Object> serviceInfo = serviceInfos.get(0);
|
|
|
- Integer loopCount = Objects.isNull(serviceInfo.get("loopcount")) ? null : Integer.parseInt(serviceInfo.get("loopcount").toString());
|
|
|
+ Object loopcount = serviceInfo.get("loopcount");
|
|
|
+ Integer loopCount = Objects.isNull(loopcount) ? null : Integer.parseInt(loopcount.toString());
|
|
|
Object cronExpress = serviceInfo.get("cronexpress");
|
|
|
- if (Objects.isNull(cronExpress)) {
|
|
|
- throw new RuntimeException("服务:%s,不是定时任务");
|
|
|
- }
|
|
|
- if (!scheduleTaskMaps.containsKey(serviceId)) {
|
|
|
- ScheduleTask scheduleTask = new ScheduleTask(serviceId, loopCount);
|
|
|
- scheduleTaskMaps.put(serviceId, scheduleTask);
|
|
|
+
|
|
|
+ if (scheduleTaskMaps.containsKey(serviceId)) {
|
|
|
+ return true;
|
|
|
}
|
|
|
- ScheduleTask scheduleTask = scheduleTaskMaps.get(serviceId);
|
|
|
+
|
|
|
+
|
|
|
+ ScheduleTask scheduleTask = new ScheduleTask(serviceId, loopCount);
|
|
|
+ scheduleTaskMaps.put(serviceId, scheduleTask);
|
|
|
//创建定时任务:
|
|
|
System.out.println("启动定时任务线程 taskId " + scheduleTask.getId());// 设置时间比当前时间晚了
|
|
|
- if (Objects.isNull(cronExpress)) {
|
|
|
-// todo 记录日志
|
|
|
- throw new RuntimeException("定时表达式并没有设置");
|
|
|
+ Object taskType = serviceInfo.get("tasktype");
|
|
|
+ Trigger trigger;
|
|
|
+// 定时
|
|
|
+ if (Objects.equals(taskType.toString(), "1")) {
|
|
|
+ trigger = new CronTrigger(cronExpress.toString());
|
|
|
+// 轮询
|
|
|
+ } else if (Objects.equals(taskType.toString(), "2")) {
|
|
|
+ Object frequency = serviceInfo.getOrDefault("frequency", "0");
|
|
|
+ trigger = new PeriodicTrigger(Duration.ofMillis(Long.parseLong(frequency.toString())));
|
|
|
+ } else {
|
|
|
+ throw new RuntimeException("任务类型不支持 定时任务支持:1:定时任务,2:轮询任务");
|
|
|
}
|
|
|
- ScheduledFuture<?> scheduledFuture = threadPoolTaskScheduler.schedule(scheduleTask, new CronTrigger(cronExpress.toString()));
|
|
|
+ ScheduledFuture<?> scheduledFuture = threadPoolTaskScheduler.schedule(scheduleTask, trigger);
|
|
|
scheduledFutureMap.put(serviceId, scheduledFuture);
|
|
|
DataBase.update(Config.getCenterConnectionStr(), "update serviceinfo set runState = 1 where serviceid =?", serviceId);
|
|
|
return true;
|
|
@@ -96,7 +106,7 @@ public class ScheduleUtil {
|
|
|
if (scheduledFuture != null && !scheduledFuture.isCancelled()) {
|
|
|
scheduledFuture.cancel(false);
|
|
|
try {
|
|
|
- DataBase.update(Config.getCenterConnectionStr(), "update serviceinfo set runState = 0 where serviceID =?", serviceId);
|
|
|
+ DataBase.update(Config.getCenterConnectionStr(), "update serviceinfo set runState = 0 where serviceid =?", serviceId);
|
|
|
} catch (Exception e) {
|
|
|
return UniReturnUtil.fail(e);
|
|
|
}
|