From 453cb085510eafdcb6bd78377432076ee45a9e77 Mon Sep 17 00:00:00 2001 From: 张磊磊 <201175954@qq.com> Date: 星期一, 30 十月 2023 09:23:42 +0800 Subject: [PATCH] 修改端口配置 --- hd/pipe/common/src/main/java/com/thhy/general/config/InsertAop.java | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/hd/pipe/common/src/main/java/com/thhy/general/config/InsertAop.java b/hd/pipe/common/src/main/java/com/thhy/general/config/InsertAop.java index 4ee1449..c764fa9 100644 --- a/hd/pipe/common/src/main/java/com/thhy/general/config/InsertAop.java +++ b/hd/pipe/common/src/main/java/com/thhy/general/config/InsertAop.java @@ -26,7 +26,7 @@ @Around("pointcut()") public Object invoke(ProceedingJoinPoint invocation) throws Throwable { - String methodName = invocation.getSignature().getName(); + /*String methodName = invocation.getSignature().getName(); if(methodName.contains("insert")||methodName.contains("Insert")){ Object j = invocation.getArgs()[0]; @@ -65,7 +65,8 @@ return invocation.proceed(); }else{ return invocation.proceed(); - } + }*/ + return invocation.proceed(); } -- Gitblit v1.9.3