隨筆-112  評論-73  文章-0  trackbacks-0

          Struts2中的Result類型應用(action...etc跳轉)

          轉自 http://www.aygfsteel.com/supercrsky/articles/165033.html

          概況

          Result類型 是在Action執(zhí)行完,一個結果返回后決定發(fā)生什么事的類。開發(fā)者可以自由的根據他們的應用和環(huán)境的需要創(chuàng)建自己的Result類型。例如在WebWork2中,Servlet和Velocity結果類型已經被創(chuàng)建用來顯示web應用程序的畫面。

          注意: 所有的webwork內建的Result類型都實現(xiàn)了com.opensymphony.xwork.Result接口. 這個接口是所有action執(zhí)行結果的通用接口,不管這個結果是用來顯示一個網頁還是產生一個email,發(fā)送一個JMS消息,等.

          Result類型配置中定義了一些類,把它們映射為action配置中可以引用的名字. 也就是為這些類創(chuàng)建便于記憶的鍵-值對.

          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接口的實現(xiàn)來使你的action可以容易的用戶交互.這些Result類型包括:

          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添加相同的結果是這樣會節(jié)省時間. Result標簽和全局Result的更多信息,參見Result配置部分

          posted on 2012-04-26 16:42 Libo 閱讀(220) 評論(0)  編輯  收藏 所屬分類: Struts2
          主站蜘蛛池模板: 富源县| 宁武县| 金昌市| 义马市| 裕民县| 剑川县| 高淳县| 阜新市| 惠来县| 乐安县| 平乐县| 桂阳县| 乌海市| 满城县| 专栏| 南溪县| 三亚市| 海安县| 吉木乃县| 竹山县| 道真| 唐河县| 宣威市| 南陵县| 邵东县| 呼伦贝尔市| 江西省| 八宿县| 余姚市| 阳春市| 萨嘎县| 乌审旗| 含山县| 景德镇市| 措勤县| 梁平县| 苍梧县| 安阳县| 平湖市| 东城区| 府谷县|