前面我们已经进行了sturs框架基本的搭建工作了,是时候该了解一下type的取值了。
<result name="success" type="">/success.jsp</result>
我们可以在struts-default.xml文件中找到结果处理器的名称,及实现类。下面我们去看一下吧!
<result-types>
<result-type name="chain" class="com.opensymphony.xwork2.ActionChainResult"/>
<result-type name="dispatcher" class="org.apache.struts2.dispatcher.ServletDispatcherResult" default="true"/>
<result-type name="freemarker" class="org.apache.struts2.views.freemarker.FreemarkerResult"/>
<result-type name="httpheader" class="org.apache.struts2.dispatcher.HttpHeaderResult"/>
<result-type name="redirect" class="org.apache.struts2.dispatcher.ServletRedirectResult"/>
<result-type name="redirectAction" class="org.apache.struts2.dispatcher.ServletActionRedirectResult"/>
<result-type name="stream" class="org.apache.struts2.dispatcher.StreamResult"/>
<result-type name="velocity" class="org.apache.struts2.dispatcher.VelocityResult"/>
<result-type name="xslt" class="org.apache.struts2.views.xslt.XSLTResult"/>
<result-type name="plainText" class="org.apache.struts2.dispatcher.PlainTextResult" />
<result-type name="postback" class="org.apache.struts2.dispatcher.PostbackResult" />
</result-types>
在这麽多的结果处理器中我们只重点学习4个:
1)redirect:重定向
2)dispatcher:转发
3)chain:转发到action
4)redirectAction:重定向到action
one by one
我们先来看一下redirect(重定向):
这个的配置及其简单,就仅仅是修改一下type的值就哦了!我们重点来看一下他的执行过程:
普通转发我们就不说了,配置及源码和上面相同,下面让我们来看一看重定向到Action,那么怎么进行配置呢?我们可以通过查看处理结果类的源码,查看其javadoc
参数描述和案例演示都很清楚,我想就不用我们进行演示了吧!转发到Action也是如此。