SSH三大框架需要的配置檔案
阿新 • • 發佈:2018-12-18
1. Struts2框架
* 在web.xml中配置核心的過濾器
<filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class> </filter> <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
* 在src目錄下建立struts.xml,用來配置Action
2. Hibernate框架
* 在src目錄建立hibernate.cfg.xml配置檔案
* 在JavaBean所在的包下對映的配置檔案
3. Spring框架
* 在web.xml配置整合WEB的監聽器
<listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml</param-value> </context-param>
* 在src目錄下建立applicationContext.xml
* 在src目錄下log4j.proerties