複雜的系統開發會有很多的action配置。為便於管理開發中應該按照功能模組或者業務分類,將sturts配置檔案分成不同的檔案,便於管理、維護。最後將這些檔案在struts.xml中進行包含宣告。
student.xml
default
/page/hello.jsp
class.xml
default
/page/hello.jsp
struts.xml
如上配置所示,sturts.xml中引入了student.xml、class.xml的定義。也對屬性引數進行了定義。物件導向的封裝思維這裡有了體現,封裝便於管理、引用。全域性引數則在全域性的檔案總進行設定。
Struts2應用開發詳解 1 開發環境的搭建
一 檔案準備 二 新建專案,建立乙個web project即可。專案建立後將.jar檔案引入lib中。三 編寫struts2的配置檔案 1 struts.xml檔案 新建struts.xml檔案於src目錄下。該檔案模板內容如下 2 web.xml配置 struts2 org.apache.stru...
Struts2基礎(Action類應用詳解)
actionsupport類 提供了5個介面幷包含了一組預設的實現 action介面 可以直接1 return success 2 return none 3 return error 4 return input 5 return login validateable介面 提供validate 介...
struts2配置詳解
在配置struts 時,如果除了核心 外還有其他 其他 需要放在核心 之前。struts2中action開發的幾種方式 1 繼承actionsupport packagecn.test.user importcom.opensymphony.xwork2.actionsupport publiccl...