码迷,mamicode.com
首页 > 其他好文 > 详细

result type struts2标签

时间:2016-09-17 21:50:37      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

<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标签

标签:

原文地址:http://www.cnblogs.com/juson37/p/5879652.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!