struts2由浅入深专题分享——result-types 第一回 result-type类型及常见的几个类型 by:丹恋耗

1.关于类型

<result-types>

            <result-typename="chain"class="com.opensymphony.xwork2.ActionChainResult"/>

            <result-typename="dispatcher"class="org.apache.struts2.dispatcher.ServletDispatcherResult"default="true"/>

            <result-typename="freemarker"class="org.apache.struts2.views.freemarker.FreemarkerResult"/>

            <result-typename="httpheader"class="org.apache.struts2.dispatcher.HttpHeaderResult"/>

            <result-typename="redirect"class="org.apache.struts2.dispatcher.ServletRedirectResult"/>

            <result-typename="redirectAction"class="org.apache.struts2.dispatcher.ServletActionRedirectResult"/>

            <result-typename="stream"class="org.apache.struts2.dispatcher.StreamResult"/>

            <result-typename="velocity"class="org.apache.struts2.dispatcher.VelocityResult"/>

            <result-typename="xslt"class="org.apache.struts2.views.xslt.XSLTResult"/>

            <result-typename="plainText"class="org.apache.struts2.dispatcher.PlainTextResult"/>

result-types>

2.常见的几个类型

其中,最常见的是chain、redirect以及redirectAction,并了解了它们之间的区别。chain:action处理完后转发到一个action,请求参数全部丢失,action处理结果不会丢失。redirect:action处理完后重定向到一个视图资源(如:jsp页面),请求参数全部丢失,action处理结果也全部丢失。redirectAction:action处理完后重定向到一个action,请求参数全部丢失,action处理结果也全部丢失。而默认配置的结果类型是dispatcher,该结果类型使用JSP来向用户显示结果。

以上-> ->感谢haven的贡献。

你可能感兴趣的:(struts2由浅入深专题分享——result-types 第一回 result-type类型及常见的几个类型 by:丹恋耗)