我创建了一个方面来记录在控制器函数中传递的请求体:
这就是我正在尝试的
@Pointcut("execution(* com.test.test.test.controller.*.* (..))")
public void executeController() {}
@Pointcut("execution(* com.test.test.common.exception.*.* (..))")
public void executeExceptionAdvice() {}
@Pointcut("@annotation(org.springframework.web.bind.annotation.RequestMapping) || "
+ "@annotation(org.springframework.web.bind.annotation.PostMapping) || "
+ "@annotation(org.springframework.web.bind.annotation.PutMapping) ||"
+ "@annotation(org.springframework.web.bind.annotation.ExceptionHandler)")
public void logRequestMapping() {}
@Before("logRequestMapping() && executeController() && args(..,@RequestBody requestBody) ")
public void logRequestBody(JoinPoint joinPoint, Object requestBody) {
LOGGER = LoggerFactory.getLogger(joinPoint.getTarget().getClass());
LOGGER.info("Method : {},Request Body:{}",
LOGGER.getName() + "." + joinPoint.getSignature().getName(),
MaskingUtil.jsonifyAndMask(requestBody));
}
现在不是与@RequestBody匹配,而是将参数与 .. 匹配,即概括参数并记录传递的所有内容而不是请求体。我想只记录请求体,如果是null它不会打印任何东西。
答案 0 :(得分:0)
也许你应该写出@RequestBody的完整路径:
@annotation(org.springframework...RequestBody) requestBody
答案 1 :(得分:0)
你已经找到了我的相关答案,但在为你准备一个例子之后,我刚刚注意到错误答案下的评论中的链接。顺便说一句,我使用的是纯POJO + AspectJ,而不是Spring AOP(在类路径上只有Spring库,以便能够解析注释),但方面应该是相同的。
P.S。:我的例子更适合你的问题,因为切入点她专门匹配带有MySqlConnector-6.9.8.msi
注释的目标方法。在另一个示例中,您必须匹配所有方法,然后在运行时进行过滤。
虚拟目标类:
我使用两个类来测试你的两个包名。否则他们是一样的。
@RequestBody
package com.test.test.test.controller;
import org.springframework.web.bind.annotation.*;
public class MyController {
// These should trigger the aspect
@RequestMapping public String one(int number, @RequestBody String name) { return "Hey!"; }
@PostMapping public void two(int number, @RequestBody String name) {}
@PutMapping public String three(@RequestBody String name) { return "Ho!"; }
@ExceptionHandler public void four(@RequestBody String name) {}
// These should *not* trigger the aspect
public String noAnnotation(@RequestBody String name) { return "No annotation"; }
public String alsoNoAnnotation(String name) { return "Also no annotation"; }
@RequestMapping public String five(int number, String name) { return "foo"; }
@PostMapping public void six(int number, String name) {}
@PutMapping public String seven(String name) { return "bar"; }
@ExceptionHandler public void eight(String name) {}
}
驱动程序应用程序:
package com.test.test.common.exception;
import org.springframework.web.bind.annotation.*;
public class MyExceptionHandler {
// These should trigger the aspect
@RequestMapping public String one(int number, @RequestBody String name) { return "Hey!"; }
@PostMapping public void two(int number, @RequestBody String name) {}
@PutMapping public String three(@RequestBody String name) { return "Ho!"; }
@ExceptionHandler public void four(@RequestBody String name) {}
// These should *not* trigger the aspect
public String noAnnotation(@RequestBody String name) { return "No annotation"; }
public String alsoNoAnnotation(String name) { return "Also no annotation"; }
@RequestMapping public String five(int number, String name) { return "foo"; }
@PostMapping public void six(int number, String name) {}
@PutMapping public String seven(String name) { return "bar"; }
@ExceptionHandler public void eight(String name) {}
}
<强>方面:强>
package de.scrum_master.app;
import com.test.test.common.exception.MyExceptionHandler;
import com.test.test.test.controller.MyController;
public class Application {
public static void main(String[] args) {
MyController controller = new MyController();
// These should trigger the aspect
controller.one(1, "one");
controller.two(2, "two");
controller.three("three");
controller.four("four");
// These should *not* trigger the aspect
controller.noAnnotation("none");
controller.five(1, "five");
controller.six(2, "six");
controller.seven("seven");
controller.eight("eight");
controller.alsoNoAnnotation("none either");
MyExceptionHandler handler = new MyExceptionHandler();
// These should trigger the aspect
handler.one(1, "one");
handler.two(2, "two");
handler.three("three");
handler.four("four");
// These should *not* trigger the aspect
handler.noAnnotation("none");
handler.five(1, "five");
handler.six(2, "six");
handler.seven("seven");
handler.eight("eight");
handler.alsoNoAnnotation("none either");
}
}
控制台日志:
package de.scrum_master.aspect;
import java.lang.annotation.Annotation;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.aspectj.lang.reflect.MethodSignature;
import org.springframework.web.bind.annotation.RequestBody;
@Aspect
public class MyAspect {
@Pointcut("execution(* com.test.test.test.controller..*(.., @org.springframework.web.bind.annotation.RequestBody (*), ..))")
public void executeController() {}
@Pointcut("execution(* com.test.test.common.exception..*(.., @org.springframework.web.bind.annotation.RequestBody (*), ..))")
public void executeExceptionAdvice() {}
@Pointcut(
"@annotation(org.springframework.web.bind.annotation.RequestMapping) || " +
"@annotation(org.springframework.web.bind.annotation.PostMapping) || " +
"@annotation(org.springframework.web.bind.annotation.PutMapping) ||" +
"@annotation(org.springframework.web.bind.annotation.ExceptionHandler)"
)
public void logRequestMapping() {}
@Before(
"logRequestMapping() &&" +
"(executeController() || executeExceptionAdvice())"
)
public void logRequestBody(JoinPoint thisJoinPoint) {
MethodSignature methodSignature = (MethodSignature) thisJoinPoint.getSignature();
Annotation[][] annotationMatrix = methodSignature.getMethod().getParameterAnnotations();
int index = -1;
for (Annotation[] annotations : annotationMatrix) {
index++;
for (Annotation annotation : annotations) {
if (!(annotation instanceof RequestBody))
continue;
Object requestBody = thisJoinPoint.getArgs()[index];
System.out.println(thisJoinPoint);
System.out.println(" Request body = " + requestBody);
}
}
}
}