struts.xml中带参数到另一个action的方法中

当一个action需要返回到另一个action中时,且有参数需要带过去时在xml里进行如下配置:
<result name="XX" type="redirect">
				/xx/xxAction_searchXX.action?kpid=${#request.kpid}&amp;type=2&amp;importType=${#request.importType}
			</result>

你可能感兴趣的:(struts.xml,参数传递)