Package org.eweb4j.mvc.interceptor

Examples of org.eweb4j.mvc.interceptor.After


 
      // 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 ;
        }
      }
View Full Code Here

TOP

Related Classes of org.eweb4j.mvc.interceptor.After

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.