Struts2 Result Type

Posted hoho_12

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Struts2 Result Type相关的知识,希望对你有一定的参考价值。

1、struts.xml

<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>

2、index.jsp

<body>
Result类型
<ol>
	<li><a href="r/r1">dispatcher</li>
	<li><a href="r/r2">redirect</li>
	<li><a href="r/r3">chain</li>
	<li><a href="r/r4">redirectAction</li>
	
	<li>freemarker</li>
	<li>httpheader</li>
	<li>stream</li>
	<li>velocity</li>
	<li>xslt</li>
	<li>plaintext</li>
	<li>tiles</li>
</ol>
</body>

3、r1.jsp

<body>
r1
</body>

4.r2.jsp

<body>
r2
</body>


5、r3.jsp

<body>
r3
</body>


6、r4.jsp
<body>
r4
</body>



以上是关于Struts2 Result Type的主要内容,如果未能解决你的问题,请参考以下文章

struts2 result type

分享知识-快乐自己:Struts2 - result标签的name属性和type属性

result type struts2标签

Struts2 Result Type

struts2的result的type属性

Struts2框架使用之关于Struts2的result配置