当前位置: 代码迷 >> Web前端 >> Struts2中的Result门类应用
  详细解决方案

Struts2中的Result门类应用

热度:242   发布时间:2012-10-14 14:55:08.0
Struts2中的Result类型应用

Result类型 是在Action执行完,一个结果返回后决定发生什么事的类。开发者可以自由的根据他们的应用和环境的需要创建自己的Result类型。例如在WebWork2中,Servlet和Velocity结果类型已经被创建用来显示web应用程序的画面。

注意: 所有的webwork内建的Result类型都实现了com.opensymphony.xwork.Result接口. 这个接口是所有action执行结果的通用接口,不管这个结果是用来显示一个网页还是产生一个email,发送一个JMS消息,等.

Result类型配置中定义了一些类,把它们映射为action配置中可以引用的名字. 也就是为这些类创建便于记忆的键-值对.

snippet of webwork-default.xml

...
<result-types> ????<result-type?name="dispatcher"?class="com.opensymphony.webwork.dispatcher.ServletDispatcherResult"?default="true"/> ????<result-type?name="redirect"?class="com.opensymphony.webwork.dispatcher.ServletRedirectResult"/> ????<result-type?name="velocity"?class="com.opensymphony.webwork.dispatcher.VelocityResult"/> ????<result-type?name="chain"?class="com.opensymphony.xwork.ActionChainResult"/> ????<result-type?name="xslt"?class="com.opensymphony.webwork.views.xslt.XSLTResult"/> ????<result-type?name="jasper"?class="com.opensymphony.webwork.views.jasperreports.JasperReportsResult"/> ????<result-type?name="freemarker"?class="com.opensymphony.webwork.views.freemarker.FreemarkerResult"/> ????<result-type?name="httpheader"?class="com.opensymphony.webwork.dispatcher.HttpHeaderResult"/> ????<result-type?name="stream"?class="com.opensymphony.webwork.dispatcher.StreamResult"/> ????<result-type?name="plaintext"?class="com.opensymphony.webwork.dispatcher.PlainTextResult"?/> </result-types>
...

snippet of your xwork.xml


<include?file="webwork-default.xml"/> <package?name="myPackage"?extends="default"> ??<action?name="bar"?class="myPackage.barAction"> ????<!--?default?result?type?is?"dispatcher"?--> ????<!--?default?result?name?is?"success"?--> ????<result>foo.jsp</result> ????<result?name="error">error.jsp</result> ????</result> ??</action> </package>

Result类型

Webwork提供了一些com.opensymphony.xwork.Result接口的实现来使你的action可以容易的用户交互.这些Result类型包括:

  • Chain Result - 用于 Action Chaining
  • Dispatcher Result - 用于 JSP 整合
  • FreeMarker Result - 用于 FreeMarker 整合
  • HttpHeader Result - 用于控制特殊的HTTP行为
  • JasperReports Result - 用于 JasperReports 整合
  • Redirect Result - 用于直接跳转到例外的URL
  • Redirect Action Result - 用于直接跳转到另外的action
  • Stream Result - 用于向浏览器返回一个InputStream (一般用于文件下载)
  • Velocity Result - 用于 Velocity 整合
  • XSL Result - 用于 XML/XSLT 整合
  • PlainText Result - 用于显示某个页面的原始的文本 (例如 jsp, html 等)

Result定义在xwork xml配置文件(xwork.xml)中的action标签里。如果location参数是result标签的唯一的参数,你可以这样简化:


<action?name="bar"?class="myPackage.barAction"> ??<result?name="success"?type="dispatcher"> ????<param?name="location">foo.jsp</param> ??</result> </action>

或者


<action?name="bar"?class="myPackage.barAction"> ??<result?name="success"?type="dispatcher">foo.jsp</result> </action>

如果你扩展了webwork-default.xml, 那么默认的返回类型是"dispatcher". 同样,如果你没有指定result的名字,默认将是"success". 就是说你可以如下简化:


<action?name="bar"?class="myPackage.barAction"> ??<result>foo.jsp</result> </action>

注意 : Parse属性允许的location参数作为表达式.例如你可以这样用:
Struts2中从一个Action跳转到另一个action,必须将type="redirect"


<result?name="success"?type="redirect">/displayCart.action?userId=${userId}</result>

注意 : 你也可以指定全局Result以便在多个action中使用. 当要为很多不同的action添加相同的结果是这样会节省时间.

  相关解决方案