本月博客排行
-
第1名
wy_19921005 -
第2名
mft8899 -
第3名
java-007 - benladeng5225
- Anmin
年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
benladeng5225 - wy_19921005
- vipbooks
- kaizi1992
- 青否云后端云
- e_e
- tanling8334
- sam123456gz
- arpenker
- zysnba
- fantaxy025025
- xiangjie88
- wallimn
- lemonhandsome
- ganxueyun
- jh108020
- Xeden
- xyuma
- wangchen.ily
- zhanjia
- johnsmith9th
- forestqqqq
- zxq_2017
- jbosscn
- daizj
- xpenxpen
- 喧嚣求静
- kingwell.leng
- lchb139128
- kristy_yy
- jveqi
- javashop
- lzyfn123
- sunj
- yeluowuhen
- ajinn
- lerf
- silverend
- chenqisdfx
- xiaoxinye
- flashsing123
- bosschen
- lyndon.lin
- zhangjijun
- sunnylocus
- lyj86
- paulwong
- sgqt
最新文章列表
(转)struts2中redirect,redirectAction和chain的区别 以及 如何在action之间传参数
帖子来源:http://tonmly.blog.163.com/blog/static/17471285620115891359147/
struts2中关于result的返回类型一般我们是转发到一个jsp页面或者是html页面等,但是struts2中的result的返回类型还有redirect,redirectAction,chain。对于这三种返回类型之间肯定是有区别的,下面我们来看看关于r ...
struts2 重定向,从action直接提交到另一个action,带参数
重定向需要在struts.xml中配置redirectAction
action需要有个全局变量或实体,并且需要有setter/getter
如:
1.action:
package com.test.action;
public class TestAction extends BaseAction implements Preparable {
Test test = new ...
struts2的resultType
struts2定义了多种resultType,包括dispatcher和redirectAction等
在struts-default.xml文件中,定义了所有的resultType类型
<result-types>
<result-type name="chain" class="com.opensymphony.xw ...
struts2结果类型之redirect和redirectAction
struts2的redirect和redirectAction结果类型,非常相似,配置时,只需将result设置为redirect或redirectAction。如:
redirect类型:<result type="redirect">/welcome.jsp</result>
redirectAction类型:<result type=" ...