struts2中result的type跳轉型別

2021-08-25 07:23:22 字數 1252 閱讀 4251

原文[url]

chain

用來處理action鏈

com.opensymphony.xwork2.actionchainresult

dispatcher

用來轉向頁面,通常處理jsp

org.apache.struts2.dispatcher.servletdispatcherresult

freemaker

處理freemarker模板

控制特殊http行為的結果型別

重定向到乙個url

org.apache.struts2.dispatcher.servletredirectresult

$在action中通過request.setattribute("url","index.jsp");設定路徑

redirectaction

重定向到乙個action

處理velocity模板

org.apache.struts2.dispatcher.velocityresult

xslt

處理xml/xlst模板

org.apache.struts2.views.xslt.xsltresult

plaintext

顯示原始檔案內容,例如檔案源**

org.apache.struts2.dispatcher.plaintextresult

redirect-action

重定向到乙個action

org.apache.struts2.dispatcher.servletactionredirectresult

plaintext

顯示原始檔案內容,例如檔案源**

org.apache.struts2.dispatcher.plaintextresult

Struts2中的result元件

常用的幾種result元件 1 jsp響應 dispatcher 採用請求 方式呼叫jsp元件響應。redirect 採用請求重定向方式呼叫jsp元件響應。在重定向後,原request和action都被銷毀掉,因此在jsp獲取不到值 使用格式如下 msg.jsp 或者使用簡寫 msg.jsp 2 a...

struts2 中result中的type型別說明

chain 用來處理action鏈,被跳轉的action中仍能獲取上個頁面的值,如request資訊。com.opensymphony.xwork2.actionchainresult dispatcher 用來轉向頁面,通常處理jsp org.apache.struts2.dispatcher.s...

Struts2配置RESULT中TYPE的引數說明

chain 用來處理action鏈,被跳轉的action中仍能獲取上個頁面的值,如request資訊。com.opensymphony.xwork2.actionchainresult dispatcher 用來轉向頁面,通常處理jsp org.apache.struts2.dispatcher.s...