读书人

ActionProxyFactory跟DefaultActionPr

发布时间: 2013-10-16 11:29:46 作者: rapoo

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(); }

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

读书人网 >软件架构设计

热点推荐