姜永辉 1 anno fa
parent
commit
b60964e5d7

+ 2 - 3
src/main/java/com/dk/common/infrastructure/aspect/ServiceAspect.java

@@ -54,10 +54,9 @@ public class ServiceAspect implements HandlerInterceptor {
      * @author : 张潇木
      * @date : 2022-3-1 12:49
      */
-    @Pointcut("(execution(* com.*.*.service..*.*(..)) || execution(* com.dk.*.service..*.*(..)) ||" +
+    @Pointcut("execution(* com.*.*.service..*.*(..)) || execution(* com.dk.*.service..*.*(..)) ||" +
             "execution(* com.dk.*.infrastructure.strategy.ProductionContext.*(..)) ||" +
-            "execution(* com.dk.*.infrastructure.strategy.production.ProductionContext.*(..)))" +
-            "&&!execution(* com.dk.*.service.wxapi.basic.WechatPayService.*(..))")
+            "execution(* com.dk.*.infrastructure.strategy.production.ProductionContext.*(..))")
     public void print() {
     }