- 浏览: 76384 次
- 性别:
- 来自: 广州
最新评论
-
wayilau:
第24条,是不是有问题呀。。。
教你认人 -
xiaoBaoProgramme:
很好的一篇文章,顶。
html页面嵌套html页面 -
JUnique:
...
SSH -
yihuijie2011:
...
SSH -
linpark:
没事来看看~
SSH
提交服务器处理业务后结果返回页面的处理,Struts2提供了对不同种类返回结果的支持,常见的有JSP,FreeMarker,Velocity等。
struts.xml配置文件中result的语法:<result name="" type="">xxxxx</result>
Struts2支持的不同类型的返回结果为:
Chain Result-->type="chain"
用来处理Action链
Dispatcher Result -->type="dispatcher"
用来转向页面,通常处理JSP
FreeMarker Result -->type="freemarker"
处理FreeMarker模板
HttpHeader Result -->type="httpheader"
用来控制特殊的Http行为
Redirect Result -->type="redirect"
重定向到一个URL
Redirect Action Result -->type="redirectAction"
重定向到一个Action
Stream Result -->type="stream"
向浏览器发送InputSream对象,通常用来处理文件下载
Velocity Result -->type="velocity"
处理Velocity模板
XLST Result -->type="xslt"
处理XML/XLST模板
PlainText Result -->type="plainText"
显示原始文件内容,例如文件源代码
另外第三方的result类型还包括JasperReports Plugin,专门用来处理JasperReport类型的报表输出。
在struts-default.xml文件中已经有了对于所有类型Result的定义:
Java 代码
1. <result-types>
2.
3. <result-type name="chain"
4.
5. class="com.opensymphony.xwork2.ActionChainResult"/>
6.
7. <result-type name="dispatcher"
8.
9. class="org.apache.struts2.dispatcher.ServletDispatcherResult"
10.
11. default="true"/>
12.
13. <result-type name="freemarker"
14.
15. class="org.apache.struts2.views.freemarker.FreemarkerResult"/>
16.
17. <result-type name="httpheader"
18.
19. class="org.apache.struts2.dispatcher.HttpHeaderResult"/>
20.
21. <result-type name="redirect"
22.
23. class="org.apache.struts2.dispatcher.ServletRedirectResult"/>
24.
25. <result-type name="redirectAction"
26.
27. class="org.apache.struts2.dispatcher.ServletActionRedirectResult"/>
28.
29. <result-type name="stream"
30.
31. class="org.apache.struts2.dispatcher.StreamResult"/>
32.
33. <result-type name="velocity"
34.
35. class="org.apache.struts2.dispatcher.VelocityResult"/>
36.
37. <result-type name="xslt"
38.
39. class="org.apache.struts2.views.xslt.XSLTResult"/>
40.
41. <result-type name="plainText"
42.
43. class="org.apache.struts2.dispatcher.PlainTextResult" />
44.
45. <!-- Deprecated name form scheduled for removal in Struts 2.1.0.
46.
47. The camelCase versions are preferred. See ww-1707 -->
48.
49. <result-type name="redirect-action"
50.
51. class="org.apache.struts2.dispatcher.ServletActionRedirectResult"/>
52.
53. <result-type name="plaintext"
54.
55. class="org.apache.struts2.dispatcher.PlainTextResult" />
56.
57. </result-types>
<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值,
Java 代码
1. <result name="success" type="dispatcher">
2.
3. <param name="location">/myjsp.jsp</param>
4.
5. </result>
<result name="success" type="dispatcher">
<param name="location">/myjsp.jsp</param>
</result>
由于type默认值是dispatcher,所以这里不需要定义,另外name的默认值为success所以这里也不需要定义。
上述代码可以简写为:
Java 代码
1. <result>
2.
3. <param name="location">/myjsp.jsp</param>
4.
5. </result>
<result>
<param name="location">/myjsp.jsp</param>
</result>
另外location参数也可以直接卸载result标签内部(也就是无需再result里面使用),所以上述代码的最简单的写法为:
Java 代码
1. <result>/myjsp.jsp</result>
<result>/myjsp.jsp</result>
我们也可以定义多个不同的result
Java 代码
1. <action name="Hello">
2.
3. <result>/hello/hello.jsp</result>
4.
5. <result name="error">/hello/error.jsp</result>
6.
7. <result name="input">/hello/input.jsp</result>
8.
9. </action>
<action name="Hello">
<result>/hello/hello.jsp</result>
<result name="error">/hello/error.jsp</result>
<result name="input">/hello/input.jsp</result>
</action>
上述代码的含义为,名字为Hello的Action有三个返回结果,并且都是 dispatcher类型(默认类型),这三个返回值的名字分别为success(默认值),error,input(当输入不通过时,action 方法返回input),对应的页面的路径分别为 /hello/result.jsp,/hello/error.jsp,/hello/input.jsp。
有些时候我们需要一个定义在全局的result,这个时候我们可以在package内部定义全局的result,例如:
Java 代码
1. <global-results>
2.
3. <result name="error">/error.jsp</result>
4.
5. <result name="invalid.token">/error.jsp</result>
6.
7. <result name="login" type="redirect-action">login!input</result>
8.
9. </global-results>
<global-results>
<result name="error">/error.jsp</result>
<result name="invalid.token">/error.jsp</result>
<result name="login" type="redirect-action">login!input</result>
</global-results>
动态返回结果
有些时候,只有当Action执行完璧的时候我们才知道要返回哪个结果,这个时候我们可以在Action内部定义一个属性,这个属性用来存储 Action执行完璧之后的Result值,例如:
Java 代码
1. private String nextAction;
2.
3. public String getNextAction() {
4.
5. return nextAction;
6.
7. }
private String nextAction;
public String getNextAction() {
return nextAction;
}
在strutx.xml配置文件中,我们可以使用${nextAction}来引用到Action中的属性,通过${nextAction}表示的内容来动态的返回结果,例如:
Java 代码
1. <action name="fragment" class="FragmentAction">
2.
3. <result name="next" type="redirect-action">${nextAction}</result>
4.
5. </action>
<action name="fragment" class="FragmentAction">
<result name="next" type="redirect-action">${nextAction}</result>
</action>
上述Action的execute方法返回next的时候,还需要根据nextAction的属性来判断具体定位到哪个Action。
在struts.xml配置文件中,我们可以使用method=""来设置调用类的哪个方法,这样就可以在一个JAVA类中使用不同的方法来实现不同的功能,就无需每个功能写一类了,例如:
Java 代码
1. <action name="fragment" class="cn.com.web.FragmentAction" method="add">
2. <result>/success.jsp</result>
3. </action>
struts.xml配置文件中result的语法:<result name="" type="">xxxxx</result>
Struts2支持的不同类型的返回结果为:
Chain Result-->type="chain"
用来处理Action链
Dispatcher Result -->type="dispatcher"
用来转向页面,通常处理JSP
FreeMarker Result -->type="freemarker"
处理FreeMarker模板
HttpHeader Result -->type="httpheader"
用来控制特殊的Http行为
Redirect Result -->type="redirect"
重定向到一个URL
Redirect Action Result -->type="redirectAction"
重定向到一个Action
Stream Result -->type="stream"
向浏览器发送InputSream对象,通常用来处理文件下载
Velocity Result -->type="velocity"
处理Velocity模板
XLST Result -->type="xslt"
处理XML/XLST模板
PlainText Result -->type="plainText"
显示原始文件内容,例如文件源代码
另外第三方的result类型还包括JasperReports Plugin,专门用来处理JasperReport类型的报表输出。
在struts-default.xml文件中已经有了对于所有类型Result的定义:
Java 代码
1. <result-types>
2.
3. <result-type name="chain"
4.
5. class="com.opensymphony.xwork2.ActionChainResult"/>
6.
7. <result-type name="dispatcher"
8.
9. class="org.apache.struts2.dispatcher.ServletDispatcherResult"
10.
11. default="true"/>
12.
13. <result-type name="freemarker"
14.
15. class="org.apache.struts2.views.freemarker.FreemarkerResult"/>
16.
17. <result-type name="httpheader"
18.
19. class="org.apache.struts2.dispatcher.HttpHeaderResult"/>
20.
21. <result-type name="redirect"
22.
23. class="org.apache.struts2.dispatcher.ServletRedirectResult"/>
24.
25. <result-type name="redirectAction"
26.
27. class="org.apache.struts2.dispatcher.ServletActionRedirectResult"/>
28.
29. <result-type name="stream"
30.
31. class="org.apache.struts2.dispatcher.StreamResult"/>
32.
33. <result-type name="velocity"
34.
35. class="org.apache.struts2.dispatcher.VelocityResult"/>
36.
37. <result-type name="xslt"
38.
39. class="org.apache.struts2.views.xslt.XSLTResult"/>
40.
41. <result-type name="plainText"
42.
43. class="org.apache.struts2.dispatcher.PlainTextResult" />
44.
45. <!-- Deprecated name form scheduled for removal in Struts 2.1.0.
46.
47. The camelCase versions are preferred. See ww-1707 -->
48.
49. <result-type name="redirect-action"
50.
51. class="org.apache.struts2.dispatcher.ServletActionRedirectResult"/>
52.
53. <result-type name="plaintext"
54.
55. class="org.apache.struts2.dispatcher.PlainTextResult" />
56.
57. </result-types>
<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值,
Java 代码
1. <result name="success" type="dispatcher">
2.
3. <param name="location">/myjsp.jsp</param>
4.
5. </result>
<result name="success" type="dispatcher">
<param name="location">/myjsp.jsp</param>
</result>
由于type默认值是dispatcher,所以这里不需要定义,另外name的默认值为success所以这里也不需要定义。
上述代码可以简写为:
Java 代码
1. <result>
2.
3. <param name="location">/myjsp.jsp</param>
4.
5. </result>
<result>
<param name="location">/myjsp.jsp</param>
</result>
另外location参数也可以直接卸载result标签内部(也就是无需再result里面使用),所以上述代码的最简单的写法为:
Java 代码
1. <result>/myjsp.jsp</result>
<result>/myjsp.jsp</result>
我们也可以定义多个不同的result
Java 代码
1. <action name="Hello">
2.
3. <result>/hello/hello.jsp</result>
4.
5. <result name="error">/hello/error.jsp</result>
6.
7. <result name="input">/hello/input.jsp</result>
8.
9. </action>
<action name="Hello">
<result>/hello/hello.jsp</result>
<result name="error">/hello/error.jsp</result>
<result name="input">/hello/input.jsp</result>
</action>
上述代码的含义为,名字为Hello的Action有三个返回结果,并且都是 dispatcher类型(默认类型),这三个返回值的名字分别为success(默认值),error,input(当输入不通过时,action 方法返回input),对应的页面的路径分别为 /hello/result.jsp,/hello/error.jsp,/hello/input.jsp。
有些时候我们需要一个定义在全局的result,这个时候我们可以在package内部定义全局的result,例如:
Java 代码
1. <global-results>
2.
3. <result name="error">/error.jsp</result>
4.
5. <result name="invalid.token">/error.jsp</result>
6.
7. <result name="login" type="redirect-action">login!input</result>
8.
9. </global-results>
<global-results>
<result name="error">/error.jsp</result>
<result name="invalid.token">/error.jsp</result>
<result name="login" type="redirect-action">login!input</result>
</global-results>
动态返回结果
有些时候,只有当Action执行完璧的时候我们才知道要返回哪个结果,这个时候我们可以在Action内部定义一个属性,这个属性用来存储 Action执行完璧之后的Result值,例如:
Java 代码
1. private String nextAction;
2.
3. public String getNextAction() {
4.
5. return nextAction;
6.
7. }
private String nextAction;
public String getNextAction() {
return nextAction;
}
在strutx.xml配置文件中,我们可以使用${nextAction}来引用到Action中的属性,通过${nextAction}表示的内容来动态的返回结果,例如:
Java 代码
1. <action name="fragment" class="FragmentAction">
2.
3. <result name="next" type="redirect-action">${nextAction}</result>
4.
5. </action>
<action name="fragment" class="FragmentAction">
<result name="next" type="redirect-action">${nextAction}</result>
</action>
上述Action的execute方法返回next的时候,还需要根据nextAction的属性来判断具体定位到哪个Action。
在struts.xml配置文件中,我们可以使用method=""来设置调用类的哪个方法,这样就可以在一个JAVA类中使用不同的方法来实现不同的功能,就无需每个功能写一类了,例如:
Java 代码
1. <action name="fragment" class="cn.com.web.FragmentAction" method="add">
2. <result>/success.jsp</result>
3. </action>
发表评论
-
springmvc Spring3 MVC @ResponseBody返回,jquery ajax调用中文乱码问题解决
2011-04-27 23:49 3019Spring3.0 MVC @ResponseBody 的作用 ... -
mysql 常用日期函数整理
2011-01-11 16:56 919一、MySQL 获得当前日期时间 函数 1.1 获得当前日期+ ... -
java 面试题
2011-01-04 14:55 8581.MVC的各个部分都有那些技术来实现?如何实现? 答:MV ... -
霸道而又暧昧,不黄不暴力的男女关系语录
2010-12-17 09:06 727周董曾说,“要是再交 ... -
全面的freemarker语法总结
2010-11-11 13:45 936语法 FreeMarker的模板文件并不比HTML页面复杂多少 ... -
面试70问经典回答技巧
2010-11-08 20:41 14851、请你自我介绍一下你自己, 回答提示:一般 ... -
struts2 <s:select>使用
2010-09-07 13:29 2755Struts 2 <s:select> examp ... -
Struts2 s:if 界面判断集合or对象
2010-09-06 15:11 2840判断 ArrayList size 是否为0 <s:i ... -
五种过滤器
2010-05-21 16:15 727五个有用的过滤器 一、使浏览器不缓存页面的过滤器 ... -
数据库数据输出到html页面
2010-04-03 23:14 1645在查询数据库的时候,我们经常会把一些查询的结果保存起来,如数 ... -
html页面嵌套html页面
2010-04-03 23:08 7955这个在做网页中常要用到,有些通用的内容可集中放在一个页面文件中 ... -
frame,iframe,frameset
2010-04-03 22:57 1287<FRAMESET> <FRAME> ... -
如何理解开源
2010-03-29 20:59 708对开源(本文中未特别说明的“开源”系广义的开源,泛指FS和OS ... -
历史项目描述
2010-03-06 23:42 1112北京九城进出口电子商务软件有限公司 新白云机场海关监管服务平台 ... -
每个初学者都应该搞懂的问题
2010-03-06 23:39 1030Java精华积累 对于这个系列里的问题,每个学Java的人都应 ...
相关推荐
Struts2内置了一些基本的Result类型,如“dispatcher”(默认),它会将结果视图作为JSP、FreeMarker或其他模板引擎文件来渲染。还有“redirect”和“redirectAction”,前者用于HTTP层面的重定向,后者用于在内部...
在Struts2中,结果类型(Result Type)是动作执行后处理结果的关键部分,它决定了如何将控制权转移给下一个资源,如JSP、FreeMarker模板或者重定向到其他URL。自定义结果类型允许开发者根据项目需求定制化结果处理...
Struts2 框架提供了多种 Result 配置类型,每种类型都有其特定的功能和应用场景。 1. Chain Result 配置 Chain Result 配置用于将一个 Action 的执行结果与另一个 Action 的执行结果链式连接起来。这种配置类型...
`struts-default.xml`是Struts2框架的默认配置,包含了一系列预定义的结果类型和配置。打开这个文件,你可以看到诸如`<result-types>`和`<action>`等元素,它们定义了各种Result Type的行为。例如,`<result-type>`...
在 Struts2 中,**Result** 是一个重要的组成部分,它负责将 Action 执行后的结果展示给用户。 **Result** 在 Struts2 配置文件(通常是 struts.xml)中被定义,用来指定 Action 处理完业务逻辑后如何响应客户端...
Struts2 Result类型是Struts2框架中一个关键的概念,它是控制Action执行后响应到何处的重要组件。在处理用户请求并执行相应的业务逻辑后,Action需要将结果返回给客户端,而Result类型就是用来定义这个返回过程的...
在Struts2框架中,`Result`类型是动作(Action)执行后的一种处理方式,它定义了动作执行完后页面跳转或者数据处理的行为。`Redirect`是`Result`类型中的一种,它涉及到Web应用程序中的URL重定向概念,对用户浏览器...
这篇博文将深入探讨Struts2的XSLTResult结果类型及其工作原理。 XSLT(Extensible Stylesheet Language Transformations)是一种转换XML文档的样式表语言。通过应用XSLT,可以将XML数据转换成HTML、PDF或其他格式,...
通过分析`redirectActionTest`文件,我们可以深入理解Struts2中`redirectAction` Result类型的实现和应用场景,包括配置、工作流程以及优缺点。实践这些知识可以帮助我们更有效地构建和维护Struts2驱动的Web应用。
在Struts2中,结果类型(Result Type)是控制动作执行后如何展示结果的关键概念。本文将深入探讨Struts2的结果类型及其使用,同时通过案例"struts006"进行分析。 首先,理解Struts2中的Action类。每个Action类通常...
`Struts2_result返回类型`指的是在Action执行成功或失败后,如何将控制权传递到下一个页面或资源。这些返回类型定义了不同的结果处理策略,使得开发者可以根据需求选择合适的方式。 首先,我们来看几个常见的返回...
在Struts2中,结果(Result)是Action执行后控制流程的重要部分,它负责将处理后的数据或者控制逻辑转向合适的视图。这篇博文将深入探讨Struts2中的result配置以及各种视图转发类型。 首先,让我们理解Result的基本...
在Struts2中,全局结果集(Global Results)是一种设计模式,它允许开发者定义一组通用的结果,这些结果可以在整个应用中重用,而无需在每个Action类中单独配置。这提高了代码的复用性和维护性。 全局结果集的概念...
在传统的Struts2配置中,结果集(Result)通常是在struts.xml或者类似的配置文件中硬编码的,这在处理多样化的返回逻辑时可能会变得繁琐且难以维护。动态结果集则解决了这个问题,使得结果集的定义可以更加动态化,...
#### 三、Result类型详解 Struts2支持多种类型的`Result`,每种类型都有其独特的功能和应用场景: ##### 1. **dispatcher** `dispatcher`是最常用的类型之一,它通过调用`RequestDispatcher`类的`forward()`方法或`...
Struts2支持多种Result类型,如dispatcher(用于转发到JSP页面)、redirect(用于重定向)和stream(用于流式下载)等。 **问题分析** 题目中提到的问题可能涉及到拦截器无法正确处理或影响到Result的执行。这可能...
Struts2 中的 Result 类型(type)是指在 Struts2 框架中用于确定 action 执行结果的方式。常用的 Result 类型有 dispatcher、redirect 和 chain 三种。这三种类型的用法和实现方式如下: 一、dispatcher ...
在Struts2中,结果(Result)是动作(Action)执行后跳转的目标,它可以是一个JSP、Servlet或其他资源。有时我们需要在Action执行后向结果传递参数,以便在目标页面中使用这些参数来呈现数据或执行某些逻辑。本文将...
在Struts2中,`Result`标签是核心组件之一,用于定义动作执行后如何跳转到相应的视图。让我们深入探讨一下`Result`标签的使用以及在Struts2框架中的作用。 ### 1. Struts2框架概述 Struts2框架基于MVC设计模式,...
下面是一个简单的 `chain` 类型结果配置示例: ```xml <result name="success" type="chain">step2.action</result> <result name="success">finish.jsp</result> ``` 在这个例子中,当 `Step1Action` 执行...