我试图模仿Spring的AspectJ @Async support,但是有一条消息总线.
问题是我需要知道我的消息总线(RabbitMQ MessageListener)是调用方法还是正常(所有其他)调用方,方法将立即返回.
我的注释称为@MQAsync而不是Springs @Async.
package com.snaphop.mqueue;
import org.apache.log4j.Logger;
import com.snaphop.mqueue.MQAsync;
public aspect MQAsyncAspect {
//pointcut asyncTypeMarkedMethod() : execution(@MQAsync void *(..));
pointcut asyncTypeMarkedMethod() : call(@MQAsync void *(..));
private static final Logger log = Logger.getLogger("MQAsync");
Object around() : asyncTypeMarkedMethod() {
if (listenerIsCaller) {
return proceed();
}
//Send the method parameters to the message bus.
//this logic isn't here for brevity.
return null;
}
}
调用切入点将获取调用者上下文,但这不起作用,因为我将通过反射调用我的消息监听器方法.执行切入点(注释掉)不会告诉我谁在调用该方法.
有没有办法通过某种堆栈转储分析来确定调用者类?
解决方法:
您可以使用以下调用确定哪个类正在调用当前方法.请注意,您必须捕获ClassNotFoundException(除非您只需将名称检索为String).
Class.forName(Thread.currentThread().getStackTrace()[2].getClassName());
为什么第三个元素?因为在调用堆栈跟踪方法时堆栈是这样排序的:
> Thread#getStackTrace()
> CurrentClass.currentMethod()
> ParentClass.parentMethod()