Browse Source

修复定时任务执行失败后入库状态为成功

RuoYi 6 years ago
parent
commit
c9bd08c2de

+ 1 - 1
ruoyi-admin/src/main/resources/static/ruoyi/js/ry-ui.js

@@ -31,7 +31,7 @@
                     showColumns: true,
                     showToggle: true,
                     showExport: false,
-                    clickToSelect: true,
+                    clickToSelect: false,
         		    fixedColumns: false,
         		    fixedNumber: 0,
         		    rightFixedColumns: false,

+ 6 - 0
ruoyi-common/src/main/java/com/ruoyi/common/exception/BusinessException.java

@@ -16,6 +16,12 @@ public class BusinessException extends RuntimeException
         this.message = message;
     }
 
+    public BusinessException(String message, Throwable e)
+    {
+        super(message, e);
+        this.message = message;
+    }
+
     @Override
     public String getMessage()
     {

+ 2 - 5
ruoyi-quartz/src/main/java/com/ruoyi/quartz/util/ScheduleRunnable.java

@@ -1,9 +1,8 @@
 package com.ruoyi.quartz.util;
 
 import java.lang.reflect.Method;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
 import org.springframework.util.ReflectionUtils;
+import com.ruoyi.common.exception.BusinessException;
 import com.ruoyi.common.utils.StringUtils;
 import com.ruoyi.common.utils.spring.SpringUtils;
 
@@ -15,8 +14,6 @@ import com.ruoyi.common.utils.spring.SpringUtils;
  */
 public class ScheduleRunnable implements Runnable
 {
-    private static final Logger log = LoggerFactory.getLogger(ScheduleRunnable.class);
-
     private Object target;
     private Method method;
     private String params;
@@ -54,7 +51,7 @@ public class ScheduleRunnable implements Runnable
         }
         catch (Exception e)
         {
-            log.error("执行定时任务  - :", e);
+            throw new BusinessException("执行定时任务失败", e);
         }
     }
 }