gpt4 book ai didi

Spring Boot @Aspect 日志记录

转载 作者:行者123 更新时间:2023-12-03 21:55:40 51 4
gpt4 key购买 nike

我尝试使用 @Aspect 来记录所有请求和响应。如果我的端点有 @RequestBody,我的代码正在运行,但我的 get 端点没有 @RequestBody 并且我看不到日志。这是对这种情况的任何解释吗?

我的类(class)就是这样;

@Aspect
@Component
@Slf4j
@RequiredArgsConstructor(onConstructor = @__({@Autowired, @NotNull}))
public class AspectLogging {

private final ObjectMapper objectMapper;

@Pointcut("@annotation(org.springframework.web.bind.annotation.GetMapping) || @annotation(org.springframework.web.bind.annotation.PostMapping)")
public void annotationPointCutDefinition() {

}

@Pointcut("execution(* *(com.dux.secondwallet.api.v3.pay.merchant.*))")
public void atExecution() {
}

@Before("annotationPointCutDefinition() && atExecution()")
public void endpointBefore(JoinPoint p) {
Object[] signatureArgs = p.getArgs();
if (Objects.nonNull(signatureArgs) && signatureArgs.length > 0) {
log.info("Request object: " + signatureArgs[0]);
}
}

@AfterReturning(pointcut = "annotationPointCutDefinition() && atExecution()", returning = "returnValue")
public void endpointAfterReturning(Object returnValue) {
try {
log.info("Response object:" + objectMapper.writeValueAsString(returnValue));
} catch (JsonProcessingException e) {
log.error(e.getMessage(), e);
}
}


@AfterThrowing(pointcut = "annotationPointCutDefinition() && atExecution()", throwing = "e")
public void endpointAfterThrowing(JoinPoint p, Exception e) throws Exception {
e.printStackTrace();
log.error(p.getTarget().getClass().getSimpleName() + " " + p.getSignature().getName() + " " + e.getMessage());
}
}

示例 Controller ; getRequest 方法不记录,postRequest 记录。
 @Slf4j
@RestController
@RequestMapping("/v3/")
public class MyController {

@GetMapping("/balances")//not before and after logging
public List<java.lang.String> getRequest() {
return Collections.singletonList("TEST");
}

@PostMapping("/limits")//its logging
public TransactionLimitResponse postRequest(@Valid @RequestBody TransactionLimitRequest transactionLimitRequest) {
return TransactionLimitResponse.builder()
.currency("EUR")
.type("TYPE")
.min(100)
.max(1000)
.build();
}
}

最佳答案

首先我想问你你想记录什么?

您的方面代码的目的是记录方法参数,并且您在 @GetMapping 方法上没有任何参数。

所以你的方面方法也为@GetMapping 成功触发。但只需检查条件并通过它。看不到日志是很正常的。

应用下面的更改它将起作用:

@Pointcut("@annotation(org.springframework.web.bind.annotation.GetMapping)")
//@Pointcut("@annotation(org.springframework.web.bind.annotation.GetMapping) || @annotation(org.springframework.web.bind.annotation.PostMapping))")
public void getMapping() {

}

@Pointcut("@annotation(org.springframework.web.bind.annotation.PostMapping)")
//@Pointcut("@annotation(org.springframework.web.bind.annotation.GetMapping) || @annotation(org.springframework.web.bind.annotation.PostMapping))")
public void postMapping() {

}


@Pointcut("execution(* *(..)) && within(com.dux.secondwallet.api.v3.pay.merchant.*))")
public void atExecution() {
}

@Before("(getMapping() || postMapping()) && atExecution()")
public void endpointBefore(JoinPoint p) {
log.info("ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss");
Object[] signatureArgs = p.getArgs();
if (Objects.nonNull(signatureArgs) && signatureArgs.length > 0) {
log.info("Request object: " + signatureArgs[0]);
}else{
log.info("log for get");
}
}
execution(* *(..)) :这是用于您的方法签名。
within(com.dux.secondwallet.api.v3.pay.merchant.*)这是包裹限制。

关于Spring Boot @Aspect 日志记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52555525/

51 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com