我有一个运行某些逻辑的@After
java方面。我需要它来返回一个结果(一个对象),该结果可以在方面的切入点截获的方法中使用。可能吗?
答案 0 :(得分:2)
您需要的是@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;
}