ChainingInterceptor
该拦截器处于defaultStack第六的位置,其主要功能是复制值栈(ValueStack)中的所有对象的所有属性到当前正在执行的Action中,如果说ValueStack中没有任何对象的话,该拦截器不会干任何事情,看到这个拦截器的名称,大家应该会想到有一种chain类型的Result,该拦截器主要就是针对chain类型Result起作用的,因为我们有可能在chain链后面的Action用到前面Action的属性,所以struts2提供了该拦截器来实现这个功能。当然我们也可以让chain链中的某个Action属性不复制到正在执行的Action中,只要chain链中的Action实现com.opensymphony.xwork2.Unchainable接口,这个Action中的属性就不会复制到当前正在执行的Action中了。下面我们看一个该拦截器的源码:
@Override public String intercept(ActionInvocation invocation) throws Exception { ValueStack stack = invocation.getStack();//获取值栈 CompoundRoot root = stack.getRoot();//获取值栈中的root对象,其实就是一个List //如果值栈中有对象 if (root.size() > 1) { //把值栈中的对象引用复制到一个List中,目的是不破坏值栈中的对象 List<CompoundRoot> list = new ArrayList<CompoundRoot>(root); list.remove(0);//移除第一个元素,即当前正在执行的Action对象 //然后将该List中对象反序,这样复制到当前Action中的属性是chain链中最后面Action的属性 Collections.reverse(list); //获取ActionContext对象内部的contextMap对象,其实就是OgnlContext对象 Map<String, Object> ctxMap = invocation.getInvocationContext().getContextMap(); Iterator<CompoundRoot> iterator = list.iterator(); int index = 1; // starts with 1, 0 has been removed while (iterator.hasNext()) {//迭代 index = index + 1; Object o = iterator.next(); if (o != null) { if (!(o instanceof Unchainable)) {//如果当前被迭代的对象没有实现Unchainable接口,则要进行属性复制 reflectionProvider.copy(o, invocation.getAction(), ctxMap, excludes, includes);//复制属性 } } else { LOG.warn("compound root element at index "+index+" is null"); } } } return invocation.invoke(); }
<action name="test" class="com.xtayfjpk.action.TestAction"> <result name="chain" type="chain">chain</result> </action> <action name="chain" class="com.xtayfjpk.action.ChainAction"> <result name="success">/WEB-INF/page/message.jsp</result> </action>
现在我们看一下这句属性复制代码:reflectionProvider.copy(o, invocation.getAction(), ctxMap, excludes, includes);copy方法的第一个参数就是值栈中要被复制属性的对象,第二个参数是当前正在执行的Action,第三个参数是OgnlContext对象,第四、五个参数excludes与includes是一个属性名称集合,excludes表示不需要被复制的属性集合,includes表示要被复制的属性集合,下面是copy方法源码:
public void copy(Object from, Object to, Map<String, Object> context, Collection<String> exclusions, Collection<String> inclusions) { ognlUtil.copy(from, to, context, exclusions, inclusions); }
它调用了ognlUtil.copy方法,我们进入该方法:
public void copy(Object from, Object to, Map<String, Object> context, Collection<String> exclusions, Collection<String> inclusions) { //省略... PropertyDescriptor[] fromPds; PropertyDescriptor[] toPds; try { fromPds = getPropertyDescriptors(from);//获取源对象(要被复制属性的对象)的属性描述符 toPds = getPropertyDescriptors(to);//获目标对象(当前正在执行的Action对象)的属性描述符 } catch (IntrospectionException e) { LOG.error("An error occured", e); return; } Map<String, PropertyDescriptor> toPdHash = new HashMap<String, PropertyDescriptor>(); for (PropertyDescriptor toPd : toPds) { toPdHash.put(toPd.getName(), toPd);//将目标对象属性描述符放到一个HashMap中 } //迭代获取源对象属性描述符 for (PropertyDescriptor fromPd : fromPds) { if (fromPd.getReadMethod() != null) {//当前属性的读方法不为空 boolean copy = true; if (exclusions != null && exclusions.contains(fromPd.getName())) { //如果当前属性包含在exclusions集合中则不复制 copy = false; } else if (inclusions != null && !inclusions.contains(fromPd.getName())) { //如果配置了inclusions,而当前属性又不包含在inclusions集合中则不复制 //如果没有配置inclusions,则只要不包含在exclusions就会复制 copy = false; } if (copy == true) {//如果当前属性需要复制 PropertyDescriptor toPd = toPdHash.get(fromPd.getName());//获取目标对象相应的属性描述符 if ((toPd != null) && (toPd.getWriteMethod() != null)) {//如果属性描述符存在且其写方法不为空则进行复制 try { Object expr = compile(fromPd.getName()); Object value = Ognl.getValue(expr, contextFrom, from); Ognl.setValue(expr, contextTo, to, value);//真正复制属性的代码 } catch (OgnlException e) { // ignore, this is OK } } } } } }