gpt4 book ai didi

Java Aspect 返回要在方法中使用的值

转载 作者:行者123 更新时间:2023-11-30 02:55:39 26 4
gpt4 key购买 nike

我有一个运行特定逻辑的@After java 方面。我需要它返回一个结果(一个对象),该结果可以在方面切入点拦截的方法中使用。是否可以?

最佳答案

您需要的是@Around,它允许您将想要的任何内容返回给建议的对象:

@Around("com.xyz.myapp.UserService.createUser()")
public Object userCreationAdvice(ProceedingJoinPoint pjp) throws Throwable {
//Do something if needed before method execution
Object retVal = pjp.proceed();
//Do something if needed after method execution
return retVal;
}

关于Java Aspect 返回要在方法中使用的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37278282/

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