struts2的acton标签中的ignoreContextParams属性和param子元素的冲突
<s:action ignoreContextParams="true" executeResult="true" name="login"> <s:param name="age">20</s:param> </s:action>
其中ignoreContextParams会失效,参数age=20会传到action中去
<s:action ignoreContextParams="true" executeResult="true" name="login"> <s:param name="age">20</s:param> </s:action>
其中ignoreContextParams会失效,参数age=20会传到action中去