* @throws Exception
*/
private void excuteMethod(String methodName) throws Exception{
/* 对于外部配置的前置拦截器,方法体内的前置拦截器较后执行 */
Before before = method.getAnnotation(Before.class);
if (before != null){
InterExecution before_interExe = new InterExecution("before", context);
before_interExe.execute(before.value());
if (before_interExe.getError() != null){
before_interExe.showErr();
return ;
}
}