1.客戶端client 傳送 reqeust請求到 容器container
2.容器container根據web.xml檔案找到 控制器controler(strutsprepareandexcutefilter)
3.controler 將action請求交給 actionproxy
4.actionproxy 根據struts.xml檔案 獲得 action 和 interceptor stack 資訊
5.actionproxy將 資訊交給 actioninvocation
6.actioninvocation 執行 action 和interceptor
7.action執行的結果返回給actioninvocation
8.返回乙個httpservletresponse相應給客戶端
Struts2 工作原理
1 客戶端初始化乙個指向servlet容器 例如tomcat 的請求 2 這個請求經過一系列的過濾器 filter 這些過濾器中有乙個叫做actioncontextcleanup的可選過濾器,這個過濾器對於struts2和其他框架的整合很有幫助,例如 sitemesh plugin 5 action...
struts2 工作原理
struts2並不是乙個陌生的web框架,它是以webwork的設計思想為核心,吸收struts1的優點,可以說 struts2是struts1和webwork結合的產物。struts2 的工作原理圖 乙個請求在struts2框架中的處理分為以下幾個步驟 1.客戶端發出乙個指向servlet容器的請...
struts2工作原理
struts2工作原理 程式設計原理 使用者傳送http請求 web伺服器 tomcat 載入web.xml web部署描述檔案 檔案 執行struts核心控制器 strutsprepareandexecutefilter或者filterdispatcher 載入struts.xml檔案,通過請求a...