struts2 action 頁面跳轉

2022-08-12 07:09:14 字數 671 閱讀 2049

標籤: action

struts2

redirect

舉報(1)type="dispatcher" 為預設,用於jsp頁面跳轉

/index.jsp

完整的寫法為: 

/index.jsp

(2)type="redirect" 重定向到jsp、action、外部**

/index.jsp

/login.do

重定向時帶引數處理方法:

1.type="redirect": 

/login.do?userid=$

2.type="redirect-action": 

見(3)

(3)type="redirect-action" 重定向到另外乙個action

login.do 重定向action名

userid帶的引數

**:(4)type="chain" 用於action跳轉。 

action2.do

login.jsp

(5)type="plaintextj" 跳轉顯示源**

具體的位置

字元規範(如gbk)

struts2 action 配置方法

struts2 action幾乎完全吸收了xwork 的精華,近日學習struts 2,總結一下action的配製方法。首先看一下com.opensymphony.xwork2.action的介面宣告,action提供execute 方法,子類必須實現execute 方法。public inte c...

struts2 action中result引數詳解

chain 用來處理action鏈 com.opensymphony.xwork2.actionchainresult dispatcher 用來轉向頁面,通常處理jsp org.apache.struts2.dispatcher.servletdispatcherresult freemaker ...

Struts2 Action獲取Scope物件

方式 一 與servlet解耦合的非ioc方式 獲取的scope物件與容器無關,通過actioncontext獲取。loginaction 如下 package com.asm public class loginaction extends actionsupport 省略username的get...