ActionDispather.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.action;
  2. import java.util.ArrayList;
  3. /**
  4.  * @author cbf4Life cbf4life@126.com
  5.  * I'm glad to share my knowledge with you all.
  6.  */
  7. public class ActionDispather implements IActionDispather {
  8. //需要执行的Action
  9. private ActionManager actionManager = new ActionManager();
  10. //拦截器链
  11. private ArrayList<Interceptors> listInterceptors = InterceptorFactory.createInterceptors();
  12. public String actionInvoke(String actionName) {
  13. //前置拦截器
  14. return actionManager.execAction(actionName);
  15. //后置拦截器
  16. }
  17. }