return result;
}
protected MethodInterceptor getMethodInterceptor(Method method, Object aspect){
if (method.getAnnotation(Around.class) != null)
return new AroundAdvice(method, aspect);
else if (method.getAnnotation(Before.class) != null)
return new BeforeAdvice(method, aspect);
else if (method.getAnnotation(After.class) != null)
return new AfterAdvice(method, aspect);
else if (method.getAnnotation(AfterReturning.class) != null)