我的应用程序中有一个方面可以拦截系统上的每个建议执行。我希望能够像这样确定我的建议执行切入点正在“拦截”哪些建议
//... AdviceInspector.aj 中的一些代码
before(): adviceexecution() && !within(AdviceInspector) {
System.out.println("advice execution being intercepted");
// TODO : get a way to know which advice execution has been intercepted
}
//... 更多代码
提前致谢