Struts2的Result Type详细回顾
Struts2的Result Type类型很多,同样如果长时间 不用,使用起来麻烦,所以在回顾时候,记录使用,共勉;一、chain 用来处理Action链 com.opensymphony.xwork2.ActionChainResult二 dispatcher 用来转向页面,通常处理JSP org.apache
一、chain
用来处理Action链
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
redirect
重定向到一个URL
org.apache.struts2.dispatcher.ServletRedirectResult
redirectAction
重定向到一个Action
org.apache.struts2.dispatcher.ServletActionRedirectResult
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
redirect-action
重定向到一个Action
org.apache.struts2.dispatcher.ServletActionRedirectResult
plaintext
显示原始文件内容,例如文件源代码
org.apache.struts2.dispatcher.PlainTextResult
需求功能是这样:Action1 获取数据库配置内容,得到相应Model的 动态URL ,这里的URL 有的是Action有的是JSP页面。
1.使用result 类型中的 redirect 类型,如下:
<result name="success" type="redirect">${dynamicUrl}?objectId=${objectId}¶m1=${param1}</result>
这样传参才能达到Action取参数的需要,如果要是加上 :
<param name="param1">${param1}</param>
<param name="items">${items}</param>
那么 param1 和 items 这两个参数都无法从目标Action里得到,如果想得到的话只能用 objectId=${objectId}¶m1=${param1} 这种方式,或者用session来实现,这样就有点复杂了,而且使用起来也相当的不方便。后来又尝试了第二种方式:
2.使用result类型中的redirect-action类型 如下:
<result name="success" type="redirect-action">
<param name="actionName">${actionName}</param>
<param name="namespace">${namespace}</param>
</result>
此时,result之间不能再设其它的自定义的参数了,因为 redirect-action对应的是 org.apache.struts2.dispatcher.ServletActionRedirectResult,而actionName和namespace是它的两个属性,还有一个重要属性就是methodName,如果要再加其它自己定的参数,只能扩展该类了。我在此基础上,又在result 之外添加了几个param 参数,如:
<param name="param1">${param1}</param>
<param name="param2">${param2}</param>
<result name="success" type="redirect-action">
<param name="actionName">${actionName}</param>
<param name="namespace">${namespace}</param>
</result>
但是还是不能将param1和param2两个参数传到目标Action中。既然Struts2有这种机制,那么它就一定能够实现,两个Action的动态传参,只是我对它不了解而已,后来,我又翻出来Strut2的源码和XWork的源码,再结果网上的资料,又尝试了第三种方式,终于可以了。
3.使用reulst 类型中chain类型 如下:
<action name="getTemplate" class="tabAction" method="getTemplateByParas">
<param name="objectId">${objectId}</param>
<param name="param1">${param1}</param>
<param name="items">${items}</param>
<result name="success" type="chain">
<param name="actionName">${actionName}</param>
<param name="namespace">${namespace}</param>
</result>
</action>
这样就可以实现传参了,这里的参数所有对象都可以传,包括map,List,set 等集合也可以。同时这里还需要注意一个小问题,chain这种类型是XWork中的result类型,它对应的类是:
com.opensymphony.xwork2.ActionChainResult . 这里需要注意一个小问题, actionName,namespace都是他的属性,所以对于传过的URL参数要做一下处理。
actionName必须是Action的名称,namespace是他命名空间,必须以"/"开头,如:
/tab/getTemplate.action 则 namespace="/tab" ; actionName=”getTemplate“;
更多推荐
所有评论(0)