让我们想象以下方面:aspectFaultHandler{pointcutservices(Servers):target(s)&&call(public**(..));before(Servers):services(s){//Howtoretrievethecallingobjectinstance?if(s.disabled)...;}}切入点捕获对Server公共(public)方法的所有调用,并在调用这些方法之前运行before建议。是否可以在before建议中检索执行对公共(public)Server方法的调用的对象实例?如果是,如何? 最佳答案