struts框架處理web請求的流程
struts框架模組的處理主要是根據struts.xml檔案中配置進行執行。
用例項說話,哈哈。
name="loginaction"
method="login"
class="com.zsl.action.loginaction">
/index.jspresult>
action>
(1)使用者發出請求,通過struts過濾器,如果有相應處理的action,則通過上面這個配置裡的順序進行執行
(2)其中action的屬性名稱即為指定的action處理檔案,method指定具體處理的方法,當然可使用預設的方法。處理完會有乙個返回結果(resutle success)。
(3)進入result標籤進行判斷顯示相應的頁面,result標籤可以有很多(name不能一樣,不寫預設為success),匹配上相應的返回值就可以跳轉到相應的頁面
struts內建的全域性 變數
未完待續
Struts2對結果型別的處理
name success type dispatcher name location ok.jspparam name parse trueparam result 在上面的配置片段中,我們在result標籤中嵌入了param元素,對於param的name屬性值 location 指定的是實際檢視資...
struts2框架學習總結
一 struts2的作用 實現檢視和請求分開 二 在瀏覽器中任意輸入後面路徑的位址時,為了防止找不到頁面或出現錯誤,則可以設定乙個預設頁面,比如首頁,可以在 struts.xml中配置 default action ref name index default action ref action n...
Struts2學習筆記 五 之異常處理機制
我們在知道在軟體開發中的異常處理是很重要的,作為成熟的mvc框架的struts2也提供了異常處理處理機制,對於一場處理 使用者傳送請求 action控制器 發現相應的異常 轉到相應的試圖進行顯示錯誤資訊.一 平時我們對於出現異常,可以直接使用try catch 進行攔截處理,或者使用throw ne...