首页 > 代码库 > result type struts2标签

result type struts2标签

<result type=""></result>

type属性的值共有10个:

  

<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-types>  

chain:转发到一个action,注意不是页面;

dispatcher:转发到另一个页面,不是action,与forward类似,用户浏览器地址不变,type属性的默认值

freemarker:

httpheader:

redirect:重定向,与HttpServletResponse的sendRedirect方法一样,让浏览器重新请求新的地址(据说这个不能重定向到Action,若需要重定向到action,用redirectAction)

redirectAction:与redirect类似,只不过是重定向到action

stream:直接输出二进制数据

velocity:

xslt:

plainText:

上面没有解释的类型为不常用类型,不再赘述,读者若需要,百度即可;

下面说一下另一个特殊的类型-json

json是一种数据格式,越来越流行,Struts2里result的type默认值并没有json,我们如果使用,可以把result所在的package继承json-defaul的package

eg:

<result type="json"></result>

result type struts2标签