// execute the action method
excuteMethod(methodName);
/* 方法体内的后置拦截器先执行 */
After after = method.getAnnotation(After.class);
if (after != null){
// 后置拦截器
InterExecution after_interExe = new InterExecution("after", context);
after_interExe.execute(after.value());
if (after_interExe.getError() != null){
after_interExe.showErr();
return ;
}
}