فهرست منبع

代码检测,检测service层的方法作者和参数必填项

herryhaixiao 6 سال پیش
والد
کامیت
197bd11c68
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 2 1
      elab-spring/src/main/java/com/elab/spring/intercept/CheckAnnotationProcess.java

+ 2 - 1
elab-spring/src/main/java/com/elab/spring/intercept/CheckAnnotationProcess.java

@@ -1,6 +1,7 @@
 package com.elab.spring.intercept;
 
 import com.elab.core.aop.annotations.ExceptionHandle;
+import com.elab.core.exception.CheckException;
 import com.elab.core.utils.ObjectUtils;
 import com.elab.core.utils.StringUtils;
 import io.swagger.annotations.ApiOperation;
@@ -95,7 +96,7 @@ public class CheckAnnotationProcess implements BeanPostProcessor, BeanFactoryPos
 
     private void notifyWarning(String message) {
         if (isException) {
-            throw new RuntimeException(message);
+            throw new CheckException(message);
         } else {
             logger.error(message);
         }