第八章 Result Types
一个提交到服务器的处理通常可以分为两个阶段,第一个阶段查询服务器状态(查询或者更新数据库),第二个阶段选择一个合适的结果页面其返回给用户(这里要讲的Result的内容)。
Struts2提供了对不同种类返回结果的支持,常见的有JSP,FreeMarker,Velocity等。
Struts2支持的不同类型的返回结果为:
名字
|
说明
|
Chain Result
|
用来处理Action链
|
Dispatcher Result
|
用来转向页面,通常处理JSP
|
FreeMarker Result
|
处理FreeMarker模板
|
HttpHeader Result
|
用来控制特殊的Http行为
|
Redirect Result
|
重定向到一个URL
|
Redirect Action Result
|
重定向到一个Action
|
Stream Result
|
向浏览器发送InputSream对象,通常用来处理文件下载
|
Velocity Result
|
处理Velocity模板
|
XLS Result
|
处理XML/XLST模板
|
PlainText Result
|
显示原始文件内容,例如文件源代码
|
S2PLUGINS:Tiles Result
|
结合Tile使用
|
另外第三方的Result类型还包括JasperReports Plugin,专门用来处理JasperReport类型的报表输出。
在struts-default.xml文件中已经有了对于所有类型Result的定义:
<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>
从上述代码中可以看出在不指定Result类型的时候使用dispatcher类型。
定义一个Result值,
<result name="success" type="dispatcher">
<param name="location">/ThankYou.jsp</param>
</result>
由于type默认值是dispatcher,所以这里不需要定义,另外name的默认值为success所以这里也不需要定义。
上述代码可以简写为:
<result>
<param name="location">/ThankYou.jsp</param>
</result>
另外location参数也可以直接卸载result标签内部,所以上述代码的最简单的写法为:
<result>/ThankYou.jsp</result>
我们也可以定义多个不同的Result
<action name="Hello">
<result>/hello/Result.jsp</result>
<result name="error">/hello/Error.jsp</result>
<result name="input">/hello/Input.jsp</result>
</action>
上述代码的含义为,名字为Hello的Action有三个返回结果,并且都是dispatcher类型(默认类型),这三个返回值的名字分别为success(默认值),error,input,对应的页面的路径分别为/hello/Result.jsp,/hello/Error.jsp,/hello/Input.jsp。
有些时候我们需要一个定义在全局的Result,这个时候我们可以在package内部定义全局的Result,例如:
<global-results>
<result name="error">/Error.jsp</result>
<result name="invalid.token">/Error.jsp</result>
<result name="login" type="redirect-action">Logon!input</result>
</global-results>
动态返回结果
有些时候,只有当Action执行完璧的时候我们才知道要返回哪个结果,这个时候我们可以在Action内部定义一个属性,这个属性用来存储Action执行完璧之后的Result值,例如:
private String nextAction;
public String getNextAction() {
return nextAction;
}
在strutx.xml配置文件中,我们可以使用${nextAction}来引用到Action中的属性,通过${nextAction}表示的内容来动态的返回结果,例如:
<action name="fragment" class="FragmentAction">
<result name="next" type="redirect-action">${nextAction}</result>
</action>
上述Action的execute方法返回next的时候,还需要根据nextAction的属性来判断具体定位到哪个Action。
分享到:
相关推荐
8. Velocity Result 配置 Velocity Result 配置用于处理 Velocity 模板。这种配置类型通常用于实现模板引擎的功能,例如将数据填充到模板中。 9. Xslt Result 配置 Xslt Result 配置用于处理 XML/XSLT 模板。这种...
8. **第八章:文件上传与下载** - 文件上传的处理,包括设置最大上传大小、处理多文件上传 - 文件下载的实现,包括设置Content-Disposition头信息 9. **第九章: strut2整合其他技术** - Struts 2与Spring框架的...
在"Struts2.1权威指南光盘源代码第13章"中,我们可以期待深入学习关于Struts2.1框架的高级特性和实践技巧。第13章通常会涵盖特定的主题,可能是框架的某个关键部分,如拦截器、结果类型、插件机制、国际化或异常处理...
2. **结果类型(Result Types)**:Struts2支持多种结果类型,如dispatcher、stream、freemarker等,用于控制请求响应的处理方式。章节可能会讲解每种结果类型的用法和适用场景。 3. **动态方法访问(Dynamic ...
3. **结果类型(Result Types):** 结果类型决定了Action执行后如何呈现结果。默认的结果类型如“dispatcher”用于转发到JSP页面,而“stream”则用于下载文件。本章可能涉及如何定义和使用自定义结果类型。 4. **...
2. **结果类型(Result Types)**:Struts 2支持多种结果类型,包括Redirect、RedirectAction、Stream等,用于控制Action执行后的页面跳转或数据输出。本章可能探讨如何根据需求选择合适的结果类型,以及自定义结果...
6. **结果类型(Result Types)**:包括dispatcher(默认的JSP渲染)、stream(处理文件下载)、redirectAction(重定向到其他Action)等,第5章可能详细讨论了各种结果类型及其应用场景。 7. ** strut2的异常处理*...
2. **结果类型(Result Types)**:Struts2支持多种结果类型,用于决定处理动作后的页面跳转。常见的有"dispatcher"(用于转发到JSP页面)、"redirect"(用于重定向到新的URL)等。本章可能会介绍如何配置和使用各种...
本章"开发者突击 Struts2 第二章 源代码"着重关注Struts2框架的核心概念和源码解析,帮助开发者深入理解其工作原理。 在Struts2框架中,源码的分析对于提升开发者的技能至关重要,因为它揭示了框架如何处理请求、...
if((result=msgrcv(qid,NULL,0,type,IPC_NOWAIT))==-1){ if(errno==E2BIG) return(TRUE); } return(FALSE); } int remove_queue(int qid){ if(msgctl(qid, IPC_RMID, 0)==-1){ return(-1); } return(0); } ...
3. **结果类型(Result Types)**:不同的结果类型决定了Action执行后如何跳转,如JSP、FreeMarker、Redirect等。源码可能展示了如何配置和使用这些结果类型。 4. **动态方法访问**:Struts2允许通过Action方法名...
5. **结果类型(Result Types)**:Struts2支持多种结果类型,如dispatcher(用于转发或重定向到JSP页面)、stream(用于下载文件)、freemarker(渲染FreeMarker模板)等。章节可能演示了如何配置和使用这些结果...
2. **结果类型(Result Types)**:不同的结果类型决定了执行动作后如何跳转到下一个页面或资源。例如,`dispatcher`用于发送HTTP请求到JSP页面,`stream`用于下载文件,`redirect`和`redirectAction`用于重定向URL...
2. **结果类型(Result Types)**:Struts2允许开发者定义不同的结果类型来决定如何处理动作执行后的结果。默认的result类型是dispatcher,用于转发到一个JSP页面。其他的如stream用于下载文件,redirect和...
在"struts2权威指南光盘源码-第21章源码"中,我们可以看到以下几个重要的知识点: 1. **Action类**:在Struts2中,Action类是业务逻辑的主要载体。它处理用户的请求,执行相应的操作,并通过Result返回相应的视图。...
2. **结果类型(Result Types)**:用于控制动作执行后如何转向其他页面或资源。例如,dispatcher结果类型用于转发到JSP页面,stream结果类型则用于处理文件下载。 3. **动态方法调用(Dynamic Method Invocation,...
2. **结果类型(Result Types)**:结果类型定义了动作执行后如何转发到视图。除了默认的dispatcher类型,还有其他如stream、redirect等,这些结果类型有助于优化页面跳转和资源处理。 3. **动态方法调用(Dynamic ...
2. **结果类型(Result Types)**:不同的结果类型决定了Action执行后如何转发或者重定向到指定的视图。例如,dispatcher用于转发到JSP页面,redirect用于重定向到新的URL。 3. **自定义插件(Custom Plugins)**:...
│ │ │ │ 第10章 网络程序设计.ppt │ │ │ │ │ │ │ └─code │ │ │ │ chatClient.py │ │ │ │ chatServer.py │ │ │ │ client.py │ │ │ │ flask_email.py │ │ │ │ flask_test.py │ │ ...
### Java自学宝典第二章:数据类型 #### 2.1 数据类型介绍 在Java中,数据类型是用来定义变量能够存储的数据种类。根据其性质,数据类型可以分为两大类:基本数据类型和引用数据类型。 ##### 2.1.1 基本数据类型 ...