`
xinklabi
  • 浏览: 1586854 次
  • 性别: Icon_minigender_1
  • 来自: 吉林
文章分类
社区版块
存档分类
最新评论

Struts2 result type详解

 
阅读更多

在默认时,<result>标签的type属性值是“dispatcher”(实际上就是转发,forward)。开发人员可以根据自己的需要指定不同的类型,如redirect、stream等。如下面代码所示:

<result name="save" type="redirect">

       /result.jsp

</result>

这此result-type可以在struts2-core- 2.0.11.1.jar包或struts2源代码中的struts-default.xml文件中找到,在这个文件中找到<result- types>标签,所有的result-type都在里面定义了。代码如下:

<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" />

        <!-- Deprecated name form scheduled for removal in Struts 2.1.0. The camelCase versions are preferred. See ww-1707 -->

        <result-type name="redirect-action" class="org.apache.struts2.dispatcher.ServletActionRedirectResult"/>

        <result-type name="plaintext" class="org.apache.struts2.dispatcher.PlainTextResult" />

</result-types>

 

chain    
   
    用来处理Action链,被跳转的action中仍能获取上个页面的值,如request信息。    
   
    com.opensymphony.xwork2.ActionChainResult    
   
dispatcher    
   
    用来转向页面,通常处理JSP    
   
    org.apache.struts2.dispatcher.ServletDispatcherResult    
   
freemaker    
   
    处理FreeMarker模板    
   
    org.apache.struts2.views.freemarker.FreemarkerResult    
   
httpheader    
   
    控制特殊HTTP行为的结果类型    
   
    org.apache.struts2.dispatcher.HttpHeaderResult  

stream    
   
    向浏览器发送InputSream对象,通常用来处理文件下载,还可用于返回AJAX数据    
   
    org.apache.struts2.dispatcher.StreamResult    
   
velocity    
   
    处理Velocity模板    
   
    org.apache.struts2.dispatcher.VelocityResult    
   
xslt    
   
    处理XML/XLST模板    
   
    org.apache.struts2.views.xslt.XSLTResult    
   
plainText    
   
    显示原始文件内容,例如文件源代码    
   
    org.apache.struts2.dispatcher.PlainTextResult    
   
plaintext    
   
    显示原始文件内容,例如文件源代码    
   
    org.apache.struts2.dispatcher.PlainTextResult

redirect    
   
    重定向到一个URL ,被跳转的页面中丢失传递的信息,如request   
   
    org.apache.struts2.dispatcher.ServletRedirectResult    
   
redirectAction    
   
    重定向到一个Action ,跳转的页面中丢失传递的信息,如request      
   
    org.apache.struts2.dispatcher.ServletActionRedirectResult    
   
redirect-action    
   
    重定向到一个Action ,跳转的页面中丢失传递的信息,如request      
   
    org.apache.struts2.dispatcher.ServletActionRedirectResult

注:redirect与redirect-action区别

一、使用redirect需要后缀名 使用redirect-action不需要后缀名 
二、type="redirect" 的值可以转到其它命名空间下的action,而redirect-action只能转到同一命名空下的 action,因此它可以省略.action的后缀直接写action的名称。

如:

<result name="success" type="redirect">viewTask.action</result> 
<result name="success" type="redirect-action">viewTask</result>

附:redirect-action 传递参数

Xml代码
< action   name = "enterpreinfo"   class = "preinfoBusinessAction"      method = "enterPreinfoSub" >    
   < result   name = "success"   type = "redirect -action" >    
     showpreinfo? preinfo.order_number =${preinfo.order_number}&amp; preinfo.company_name =${preinfo.company_name}    
   </ result >    
< result   name = "error"   type = "redirect " >    
     < param   name = "location" > /error.jsp </ param >    
</ result >    
</ action >

   因为使用了redirect -action,所以要注意不能将 showpreinf?preinfo.order_number=${preinfo.order_number}写成 showpreinf.action?preinfo.order_number=${preinfo.order_number}

其中${}为EL表达式,获取action:enterpreinfo中 属性的值 ; 在这个配置文件里,多个参数的连接符使用了"&amp;",但XML的语法规范,应该使用"&amp;"代替"&",原理和 HTML中的转义相同,开始没有注意,在struts 分析配置文件时,总是报出这样的错误:

The reference to entity "preinfo" must end with the ';' delimiter.   
The reference to entity "preinfo" must end with the ';' delimiter.

 

 

简单说明一下result的name属性和type属性:
SUCCESS:Action正确的执行完成,返回相应的视图,success是name属性的默认值;
NONE:表示Action正确的执行完成,但并不返回任何视图;
ERROR:表示Action执行失败,返回到错误处理视图;
INPUT:Action的执行,需要从前端界面获取参数,INPUT就是代表这个参数输入的界面,一般在应用中,会对这些参数进行验证,如果验证没有通过,将自动返回到该视图;
LOGIN:Action因为用户没有登陆的原因没有正确执行,将返回该登陆视图,要求用户进行登陆验证。
dispatcher: 请求转发,底层调用RequestDispatcher的forward()或include()方法,dispatcher是 type属性的默认值,通常用于转向一个JSP,localtion指定JSP的位置,parse如果为false表示location的值不会被当作 OGNL解析,默认为true;
redirect:重定向,新页面无法显示Action中的数据,因为底层调用response.sendRedirect("")方法,无法共享请求范围内的数据,参数与dispatcher用法相同;
redirect- action:重定向到另一个Action,参数与chain用法相同,允许将原Action中的属性指定新名称带入新Action 中,可以在Result标签中添加 <param name=”b”>${a} </param>,这表示原Action中的变量a的值被转给b,下一个Action可以在值栈中使用b来操作,注意如果值是中文,需要做一 些编码处理,因为Tomcat默认是不支持URL直接传递中文的!
velocity:使用velocity模板输出结果,location指定模板的位置(*.vm),parse如果为false,location不被OGNL解析,默认为true;
xslt: 使用XSLT将结果转换为xml输出,location指定*.xslt文件的位置,parse如果为false,location不被 OGNL解析,默认为true,matchingPattern指定想要的元素模式,excludePattern指定拒绝的元素模式,支持正则表达式, 默认为接受所有元素;
httpheader:根据值栈返回自定义的HttpHeader,status指定响应状态(就是指 response.sendError(int i)重定向到500等服务器的状态页),parse如果为false,header的值不会被OGNL解析,headers,加入到header中的值, 例如: <param name=”headers.a”>HelloWorld </param>,可以加多个,这些键-值组成HashMap;
freemaker:用freemaker模板引擎呈现视图,location指定模板(*.ftl)的位置,parse如果为false,location的值不会被OGNL解析,contentType指定以何中类型解析,默认为text/html;
chain: 将action的带着原来的状态请求转发到新的action,两个action共享一个ActionContext,actionName指定转向的新的 Action的名字,method指定转向哪个方法,namespace指定新的Action的名称空间,不写表示与原Action在相同的名称空 间;skipActions指定一个使用 , 连接的Action的name组成的集合,一般不建议使用这种类型的结果;
stream:直接向 响应中发送原始数据,通常在用户下载时使用,contentType指定流的类型,默认为 text/plain,contentLength以byte计算流的长度,contentDisposition指定文件的位置,通常为 filename=”文件的位置”,input指定InputStream的名字,例如:imageStream,bufferSize指定缓冲区大小, 默认为1024字节;
plaintext:以原始文本显示JSP或者HTML,location指定文件的位置,charSet指定字符集;

分享到:
评论

相关推荐

    struts2 result配置详解

    Struts2 Result 配置详解 Struts2 框架中 Result 配置是一种非常重要的配置,它直接影响着应用程序的执行结果。Result 配置通常用于定义 Action 的执行结果,例如将结果.redirect 到一个新的 URL,或者将结果....

    Struts2 result和type

    ### Struts2中的Result与Type详解 #### 一、引言 在Struts2框架中,`Result`和`Type`是两个非常重要的概念。它们主要用于控制Action执行完毕后页面的跳转方式以及如何处理Action返回的结果。通过合理配置`Result`与...

    Struts2配置详解

    &lt;result- type="dispatcher" class="org.apache.struts2.dispatcher.ServletDispatcherResult" default="true"/&gt; &lt;result- type="redirect" class="org.apache.struts2.dispatcher.ServletRedirectResult"/&gt; &lt;/...

    Struts2 Result 参数详解

    Struts2 Result 参数详解 在Struts2框架中,Result是处理Action执行后返回结果的核心组件。它负责将Action执行的结果导向到相应的视图或者进行其他处理,如重定向、文件下载等。Result的类型多种多样,可以根据实际...

    Struts2知识点详解

    5. **结果类型(Result Type)**:Struts2支持多种结果类型,如dispatcher(用于转发到JSP页面)、stream(用于下载文件)和redirect(用于重定向URL)等。 6. **拦截器(Interceptor)**:拦截器是Struts2的一大...

    Struts2之struts2文件下载详解案例struts012

    &lt;result type="stream"&gt; &lt;param name="contentType"&gt;application/octet-stream &lt;param name="inputName"&gt;file &lt;param name="contentDisposition"&gt;attachment;filename="${fileName}" &lt;param name="bufferSize"&gt;...

    Struts2官方例子详解以及配置文件详解

    在这个"Struts2官方例子详解以及配置文件详解"中,我们将深入探讨Struts2的核心概念和配置细节,通过一个实际的MVC小例子来帮助理解。 首先,让我们了解Struts2的基础知识。Struts2框架是基于拦截器的,它的工作...

    struts2+ajax详解pdf清晰

    3. **结果类型与视图解析:** 结果类型(Result Type)决定了Action执行后如何返回结果。常见的结果类型有dispatcher(用于转发到JSP页面)、stream(用于处理文件下载)等。视图解析器则负责将结果名转换为实际的...

    Struts2应用开发详解06

    2. **结果类型(Result Type)**:Struts2的默认结果类型包括dispatcher(转发到JSP)、stream(流式处理,如下载文件)等。通过自定义结果类型,我们可以扩展框架的结果处理能力,比如实现AJAX响应或WebSocket通信...

    Struts2配置文件详解

    Struts2是一款强大的Java web开发框架,它基于MVC(Model-View-Controller)设计模式,简化了企业级应用的开发流程。配置文件是Struts2框架的核心组成部分,它定义了应用程序的行为、拦截器和动作映射等关键元素。...

    Struts2应用开发详解02

    4. **结果类型(Result Type)**:Struts2.2引入了多种预定义的结果类型,如dispatcher(用于转发到JSP页面)、stream(用于处理文件下载)等,开发者可以根据需求选择或自定义结果类型。 5. **更完善的注解支持**...

    Struts2.0框架技术详解

    ### Struts2.0框架技术详解 #### 一、MVC思想 **1.1 Model I 模式和 Model II 模式** ##### 1.1.1 Model I 模式 在Model I模式下,整个Web应用几乎全部由JSP页面组成。JSP页面不仅接收处理客户端请求,还直接...

    struts2配置文件之result

    ### Struts2配置文件中的Result详解 在Struts2框架中,`result`是一个非常重要的概念,它主要用于定义Action执行完成后页面的跳转规则。本文将深入探讨Struts2配置文件中`result`的配置方法及其不同的类型,并通过...

    struts2整合jasperreport

    &lt;result type="jasper"&gt; &lt;param name="location"&gt;/path/to/your/report.jasper &lt;param name="contentType"&gt;application/pdf &lt;/result&gt; ``` 通过以上步骤,我们就成功地整合了Struts2和JasperReport3,并...

    Struts2之异步调用机制详解案例struts014

    5. **结果类型(Result Type)**:在Struts2中,结果类型定义了Action执行后如何处理返回的结果。对于异步调用,我们可能需要配置一个能返回JSON或XML数据的结果类型,这些数据可以被JavaScript解析并用于更新页面。...

    struts.xml文件详解示例代码

    Struts.xml文件是Apache Struts 2框架的核心配置文件,用于定义应用的MVC(Model-View-Controller)架构和动作映射。它为应用程序提供了一种声明式的方式来配置Struts2的行为,使得开发者能够控制请求如何被处理,...

    Jquery与struts2

    **jQuery与Struts2整合详解** 在Web开发中,jQuery是一个强大的JavaScript库,它极大地简化了JavaScript的使用,使得前端交互更加便捷高效。而Struts2作为一款成熟的MVC框架,广泛应用于Java后端开发,提供了强大的...

    Struts2 英文教程

    ### Struts2框架详解:构建高效MVC架构的利器 #### 概述 Struts2是Struts框架的下一代版本,作为模型-视图-控制器(Model-View-Controller,MVC)架构的一种实现,其目标是通过减少XML配置、采用智能约定以及提供...

    jquery和struts2的整合

    **jQuery与Struts2整合详解** 在Web开发中,jQuery是一个强大的JavaScript库,它简化了DOM操作、事件处理、动画效果以及Ajax交互。而Struts2是一个基于MVC设计模式的Java Web框架,用于构建可维护性和可扩展性高的...

Global site tag (gtag.js) - Google Analytics