首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

ActionProxyFactory跟DefaultActionProxyFactory

2013-10-16 
ActionProxyFactory和DefaultActionProxyFactorypublic void init(ActionProxy proxy){this.proxy proxy

ActionProxyFactory和DefaultActionProxyFactory
public void init(ActionProxy proxy) { this.proxy = proxy; Map<String, Object> contextMap = createContextMap(); // Setting this so that other classes, like object factories, can use the ActionProxy and other // contextual information to operate ActionContext actionContext = ActionContext.getContext(); if (actionContext != null) { actionContext.setActionInvocation(this); } createAction(contextMap); if (pushAction) { stack.push(action); contextMap.put("action", action); } invocationContext = new ActionContext(contextMap); invocationContext.setName(proxy.getActionName()); // get a new List so we don't get problems with the iterator if someone changes the list List<InterceptorMapping> interceptorList = new ArrayList<InterceptorMapping>(proxy.getConfig().getInterceptors()); interceptors = interceptorList.iterator(); }

?? 通过上面代码发现,创建DefaultActionInvocation对象,是比较简单的,只需要传递简单的参数和借助Xwork的容器完成依赖注入即可。但是初始化DefaultActionInvocation,需要依赖ActionProxy。

热点排行