Browse Source

注释掉异常处理器 和superdesk-app-base中的冲突

story 1 year ago
parent
commit
3575cb109b

+ 83 - 83
superdesk-libs-springweb/src/main/java/cn/superdesk/libs/springweb/GlobalExceptionHandler.java

@@ -1,83 +1,83 @@
-package cn.superdesk.libs.springweb;
-
-import java.lang.reflect.Method;
-
-import javax.servlet.http.HttpServletResponse;
-
-import cn.superdesk.libs.springweb.model.WrapperResponseEntity;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.http.HttpStatus;
-import org.springframework.web.bind.annotation.ControllerAdvice;
-import org.springframework.web.bind.annotation.ExceptionHandler;
-import org.springframework.web.bind.annotation.ResponseBody;
-
-import cn.superdesk.libs.common.SuperdeskBaseException;
-
-@ControllerAdvice
-public class GlobalExceptionHandler {
-
-    private final Logger logger = LoggerFactory.getLogger(getClass());
-
-    private static Method rollbackCacheMethod;
-
-    static {
-        try {
-            Class<?> cacheHandlerClass = Class.forName("cn.superdesk.libs.mybatis.plugin.cache.CacheHandler");
-            rollbackCacheMethod = cacheHandlerClass.getMethod("rollbackCache");
-        } catch (Exception e) {
-        }
-    }
-
-    @ExceptionHandler(Exception.class)
-    @ResponseBody
-    public WrapperResponseEntity exceptionHandler(Exception e, HttpServletResponse response) {
-
-        // 缓存回滚
-        if (rollbackCacheMethod != null) {
-            try {
-                rollbackCacheMethod.invoke(null);
-            } catch (Exception e2) {
-            }
-        }
-
-        WrapperResponseEntity resp = new WrapperResponseEntity();
-        if (e.getCause() != null && e.getCause() instanceof SuperdeskBaseException) {
-            SuperdeskBaseException e1 = (SuperdeskBaseException) e.getCause();
-            resp.setCode(e1.getCode());
-            resp.setMsg(e1.getMessage());
-        } else if (e instanceof SuperdeskBaseException) {
-            SuperdeskBaseException e1 = (SuperdeskBaseException) e;
-            resp.setCode(e1.getCode());
-            resp.setMsg(e1.getMessage());
-        } else if (e instanceof org.springframework.web.HttpRequestMethodNotSupportedException) {
-            resp.setCode(HttpStatus.METHOD_NOT_ALLOWED.value());
-            resp.setMsg(e.getMessage());
-        } else if (e instanceof org.springframework.web.HttpMediaTypeException) {
-            resp.setCode(HttpStatus.UNSUPPORTED_MEDIA_TYPE.value());
-            resp.setMsg(e.getMessage());
-        } else if (e instanceof org.springframework.web.bind.MissingServletRequestParameterException) {
-            resp.setCode(1001);
-            resp.setMsg(e.getMessage());
-        } else {
-            Throwable parent = e.getCause();
-            if (parent instanceof IllegalStateException) {
-                resp.setCode(501);
-                resp.setMsg(e.getMessage());
-            } else {
-                resp.setCode(500);
-                resp.setMsg("系统繁忙");
-            }
-            logger.error("", e);
-        }
-
-        int errorCode = resp.getCode();
-        if (errorCode >= 400 && errorCode <= 500) {
-            response.setStatus(errorCode);
-        } else {
-            response.setStatus(500);
-        }
-
-        return resp;
-    }
-}
+// package cn.superdesk.libs.springweb;
+//
+// import java.lang.reflect.Method;
+//
+// import javax.servlet.http.HttpServletResponse;
+//
+// import cn.superdesk.libs.springweb.model.WrapperResponseEntity;
+// import org.slf4j.Logger;
+// import org.slf4j.LoggerFactory;
+// import org.springframework.http.HttpStatus;
+// import org.springframework.web.bind.annotation.ControllerAdvice;
+// import org.springframework.web.bind.annotation.ExceptionHandler;
+// import org.springframework.web.bind.annotation.ResponseBody;
+//
+// import cn.superdesk.libs.common.SuperdeskBaseException;
+//
+// @ControllerAdvice
+// public class GlobalExceptionHandler {
+//
+//     private final Logger logger = LoggerFactory.getLogger(getClass());
+//
+//     private static Method rollbackCacheMethod;
+//
+//     static {
+//         try {
+//             Class<?> cacheHandlerClass = Class.forName("cn.superdesk.libs.mybatis.plugin.cache.CacheHandler");
+//             rollbackCacheMethod = cacheHandlerClass.getMethod("rollbackCache");
+//         } catch (Exception e) {
+//         }
+//     }
+//
+//     @ExceptionHandler(Exception.class)
+//     @ResponseBody
+//     public WrapperResponseEntity exceptionHandler(Exception e, HttpServletResponse response) {
+//
+//         // 缓存回滚
+//         if (rollbackCacheMethod != null) {
+//             try {
+//                 rollbackCacheMethod.invoke(null);
+//             } catch (Exception e2) {
+//             }
+//         }
+//
+//         WrapperResponseEntity resp = new WrapperResponseEntity();
+//         if (e.getCause() != null && e.getCause() instanceof SuperdeskBaseException) {
+//             SuperdeskBaseException e1 = (SuperdeskBaseException) e.getCause();
+//             resp.setCode(e1.getCode());
+//             resp.setMsg(e1.getMessage());
+//         } else if (e instanceof SuperdeskBaseException) {
+//             SuperdeskBaseException e1 = (SuperdeskBaseException) e;
+//             resp.setCode(e1.getCode());
+//             resp.setMsg(e1.getMessage());
+//         } else if (e instanceof org.springframework.web.HttpRequestMethodNotSupportedException) {
+//             resp.setCode(HttpStatus.METHOD_NOT_ALLOWED.value());
+//             resp.setMsg(e.getMessage());
+//         } else if (e instanceof org.springframework.web.HttpMediaTypeException) {
+//             resp.setCode(HttpStatus.UNSUPPORTED_MEDIA_TYPE.value());
+//             resp.setMsg(e.getMessage());
+//         } else if (e instanceof org.springframework.web.bind.MissingServletRequestParameterException) {
+//             resp.setCode(1001);
+//             resp.setMsg(e.getMessage());
+//         } else {
+//             Throwable parent = e.getCause();
+//             if (parent instanceof IllegalStateException) {
+//                 resp.setCode(501);
+//                 resp.setMsg(e.getMessage());
+//             } else {
+//                 resp.setCode(500);
+//                 resp.setMsg("系统繁忙");
+//             }
+//             logger.error("", e);
+//         }
+//
+//         int errorCode = resp.getCode();
+//         if (errorCode >= 400 && errorCode <= 500) {
+//             response.setStatus(errorCode);
+//         } else {
+//             response.setStatus(500);
+//         }
+//
+//         return resp;
+//     }
+// }