yujian
2020-05-09 7e7db2fa55a9a3af46d4fd8ede0dee147f101d64
fanli/src/main/java/com/yeshi/fanli/aspect/H5SignValidateAspect.java
@@ -13,6 +13,7 @@
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.Signature;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.reflect.MethodSignature;
import org.springframework.stereotype.Component;
@@ -35,7 +36,7 @@
   public static String KEY = "thisWarning";
   // @Around(EDP)
   @Around(EDP)
   public Object appH5Around(ProceedingJoinPoint joinPoint) throws IOException {
      ServletRequestAttributes servletContainer = (ServletRequestAttributes) RequestContextHolder
@@ -61,12 +62,7 @@
         try {
            return joinPoint.proceed(args);
         } catch (Throwable e) {
            e.printStackTrace();
            try {
               LogHelper.errorDetailInfo(e, getHttpServletParams(request), request.getRequestURI().toString());
            } catch (Exception e1) {
               e1.printStackTrace();
            }
            LogHelper.errorDetailInfo(e, getHttpServletParams(request), request.getRequestURI().toString());
         }
      }