Struts2 Result 参数详解
一个提交到服务器的处理通常可以分为两个阶段,第一个阶段查询服务器状态(查询或者更新数据库),第二个阶段选择一个合适的结果页面其返回给用户(这里要讲的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。
如果想转发到另外个action可以设置type=chain 同时结果不加shtml
以上就是struts2 result 参数详解的全部内容,希望能给大家一个参考,也希望大家多多支持。