Struts2学习笔记(8)-Result常用类型
程序员文章站
2024-03-12 12:17:56
result也是struts2比较重要的一部分,在result的配置中常用的有四种类型:dispatcher、redirect、chain和redirectaction,在...
result也是struts2比较重要的一部分,在result的配置中常用的有四种类型:dispatcher、redirect、chain和redirectaction,在这四种中又以前两种最为常见。
例:
<struts> <constant name="struts.devmode" value="true" /> <package name="resulttypes" namespace="/r" extends="struts-default"> <action name="r1"> <result type="dispatcher">/r1.jsp</result> </action> <action name="r2"> <result type="redirect">/r2.jsp</result> </action> <action name="r3"> <result type="chain">r1</result> </action> <action name="r4"> <result type="redirectaction">r2</result> </action> </package> </struts>
1、dispatcher,最常用-服务器端跳转,即当用户访问某个action时,后台服务器会自从查找对应的result是哪个jsp页面,从而跳转过去,这个时候在浏览器的地址栏显示的是action的地址。
2、redirect,也比较常用,客户端跳转,这个跳转比较有意思,首先用户访问服务器,服务器会给用户一个反馈,用户根据这个反馈会重新发送一个请求道服务器,这个请求就是要查看的页面请求,然后服务器直接将这个页面显示给用户。它的过程中有两次请求,这种方式的浏览器中的url地址是jsp文件的地址。
3、chain,链条,它是以forward的方法访问的action,可以是包内的也可以是包外的。他的浏览器url是action的地址
4、redirectaction,以redirect的方法跳转到其他action,因此它的浏览器url显示的是它所访问的jsp文件的地址
以上就是struts2中result四种常用的类型用法的全部内容,希望能给大家一个参考,也希望大家多多支持。
上一篇: PHP中phar包的使用教程
下一篇: 浅谈Java自动装箱与拆箱及其陷阱