程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> Struts2 Result Type

Struts2 Result Type

編輯:關於JSP

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>    

</constant></struts>

2、index.jsp

Result類型
  1. dispatcher
  2. redirect
  3. chain
  4. redirectAction
  5. freemarker
  6. httpheader
  7. stream
  8. velocity
  9. xslt
  10. plaintext
  11. tiles
3、r1.jsp

r1
4.r2.jsp

r2
5、r3.jsp

r3
6、r4.jsp

r4

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved