<!-- 如果你不写type的话,就是默认为dispatcher,服务器跳转,前台页面显示aciton-->
<action name="dispatcher" class="ResultType">
<result type="dispatcher">/dispatcher.jsp</result>
</action>
<!-- 客户端跳转,跳转到jsp页面-->
<action name="redirect" class="ResultType">
<result type="redirect">/redirect.jsp</result>
</action>
<!-- action跳转到另一个aciton 再由另一个action来进行处理 但是显示action还是chain的名字-->
<action name="chain" class="ResultType">
<result type="chain">redirect</result>
</action>
<!-- action跳转到另一个aciton 再由另一个action来进行处理 但是显示action是dispatcher的名字-->
<action name="redirectAction" class="ResultType">
<result type="redirectAction">dispatcher</result>
</action>