(1)type="dispatcher" 為預設,用於jsp頁面跳轉
/index.jsp
完整的寫法為:
/index.jsp
(2)type="redirect" 重定向到jsp、action、外部**
/index.jsp
/login.do
(3)type="redirect-action" 重定向到另外乙個action
login.do 重定向action名
userid帶的引數
(4)type="chain" 用於action跳轉。
action2.do
login.jsp
(5)type="plaintext" 跳轉顯示源**
具體的位置
字元規範(如gbk)
Struts2標籤 checkbox唯讀屬性設定
在struts2的checkbox標籤中,為實現唯讀效果,一般使用readonly true 是達不到效果的,但設定disabled true 又會導致該表單屬性值不會被提交,解決方式 onclick return false 當需要設定唯讀效果的checkbox標籤過多時,也可使用指定class ...
Struts2 result的幾種type型別說明
標籤在struts2 mvc框架中扮演檢視的角色。action負責執行業務邏輯,下一步就是使用標籤顯示檢視。通常action會配置多個可能的結果字串以及多個不同的檢視來渲染乙個處理結果,struts提供了許多預定義的結果型別,我們已經看到的是預設的結果型別dispatcher,它用於分發到jsp頁面...
struts的if標籤使用
下面總結一下struts2 中if標籤的使用 1 判斷字串是否為空 s if test user.username null or user.username s if test ab123 null ab123 is null s if s else ab123 not null s else 2...