相当于有一个类AAA 
public class aaa implements MethodBeforeAdvice{ 
  public void before(Method m,Object[] args, Object target) throws Throwable{ 
      System.out.println("call method:"+m.getName()); 
  } 

然后使用他: 
MethodBeforeAdvice log=new AAA();