struts2的 result

struts2的result的type有很多,但是一些都不大常用!

dispatcher,redirect,chain,redirectAction!

dispatcher是默认的,运用服务器跳转(jsp:forward)到结果页面;不能跳转到一个action里;

redirect:跳转到视图,不能跳转到一个action里;

chain:forward到一个action!

redirectAction:客户端跳转!

struts.xml:

<struts>
	<constant name="struts.devMode" value="true" />
	<package name="result" extends="struts-default" namespace="/result">
		<action name="d1" class="cn.keith.resultType.ResultType">
			<result type="dispatcher">/d1.jsp</result>
		</action>
		<action name="d2" class="cn.keith.resultType.ResultType">
			<result type="redirect">/d2.jsp</result>
		</action>
		<action name="d3" class="cn.keith.resultType.ResultType">
			<result type="chain">d1</result>
		</action>
		<action name="d4" class="cn.keith.resultType.ResultType">
			<result type="redirectAction">d2</result>
		</action>
	</package>
</struts>

 jsp:

<a href="result/d1">测试dispatcher_d1</a>
	<a href="result/d2">测试redirect_d1</a>
	<a href="result/d3">测试chain_d1</a>
	<a href="result/d4">测试redirectAction_d1</a>

 可以测试下结果!

你可能感兴趣的:(jsp,xml,struts)