gpt4 book ai didi

aspectj - 如何从 Around advise 获取调用者方法信息

转载 作者:行者123 更新时间:2023-12-04 13:59:50 24 4
gpt4 key购买 nike

ThisJoinPoint只能获取当前方法信息,怎么获取调用者方法信息?

最佳答案

您可以尝试使用特殊变量 thisEnclosingJoinPointStaticPart,它保存封闭 JoinPoint 的静态部分。

提到here (示例)和 here (文档)

或者,如果使用基于注释的 AspectJ,将以下内容传递给建议方法的参数,例如:

@Before("call( /* your pointcut definition */ )")
public void myCall(JoinPoint.EnclosingStaticPart thisEnclosingJoinPointStaticPart)
{
// ...
}

提到here

关于aspectj - 如何从 Around advise 获取调用者方法信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5630809/

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