Struts2 web.xml(七)
1.web.xml
2.指定初始化引數
3.FilterDispatcher 可以包含的初始化引數如下
web應用都需要一個配置檔案web.xml.該檔案用來對整個應用程式進行配置。而不通的web程式,web.xml檔案是不同的。
在struts2框架中,web.xml檔案需要配置一個前端控制器:FilterDispatcher,用於對Struts2框架進行初始化,以及處理所有的請求.
2.指定初始化引數
//在filter 中的init-param中執行初始化引數
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
<init-param>
<param-name>actionPackage</param-name>
<param-value>org.apache.struts2.showcase.person</param-value>
</init-param>
</filter>
3.FilterDispatcher 可以包含的初始化引數如下
1.config:表示載入xml配置檔案列表,多個檔案之間用英文逗號分割(,) 如果沒有引數,struts2預設載入struts.xml struts-default.xml struts-plugin.xml
2.actionPackage:表示需要載入的java包名的列表,多個包名之間用英文逗號分割(,) ,struts2會載入這些包中的action
3.configProviders:表示實現了ConfigurationProvider 介面的java類的列表,多個類名之間使用英文逗號分割(,)。ConfigurationProvider介面描述了框架的配置,預設情況下,Struts2框架使用StrutsXmlConfigurationProvider從xml中載入它的配置。使用configProviders引數,可以用來指定自己的ConfigurationProvider的介面實現類。
4.“*”:任何其他的引數都被當作是Struts2的常量
相關文章
- 使用struts2框架,web.xml怎麼配置框架WebXML
- Struts2在web.xml中配置為“/*”和“*.action,*.jsp”的差別WebXMLJS
- struts2中struts.xml和web.xml檔案解析及工作原理XMLWeb
- web.xml作用WebXML
- web.xml的作用WebXML
- web.xml之一WebXML
- 關於web.xmlWebXML
- web.xml詳解WebXML
- web.xml相關配置WebXML
- websphere中web.xml配置WebXML
- web.xml元素介紹WebXML
- maven專案增加web.xmlMavenWebXML
- web.xml檔案的作用WebXML
- 【原創】Web.xml簡介WebXML
- web.xml配置詳解7WebXML
- web.xml配置詳解6WebXML
- web.xml配置詳解5WebXML
- web.xml配置詳解4WebXML
- web.xml配置詳解3WebXML
- web.xml配置詳解2WebXML
- 【Struts2】:Struts2的型別轉換型別
- Struts2教程1:第一個Struts2程式
- 不同版本的 web.xml 頭資訊WebXML
- web.xml中的shiroFilter配置WebXMLFilter
- web.xml中的servlet相關WebXMLServlet
- web.xml 的載入過程WebXML
- Struts2 - OGNL表示式和Struts2標籤庫
- 在web.xml中配置過濾器WebXML過濾器
- SpringMVC4零配置--web.xmlSpringMVCWebXML
- 如何把web.xml中的*.do改掉?WebXML
- web.xml檔案配置的說明WebXML
- Struts2 resultType(十五)
- Struts2 FilterDispatcher StrutsPrepareAndExecuteFilterFilter
- Struts2工程搭建
- struts2入門
- Struts2核心元件元件
- Struts2的框架框架
- Struts2工作原理