1. 程式人生 > >ssh整合下的配置檔案引數和存放位置詳解

ssh整合下的配置檔案引數和存放位置詳解

本人初級程式設計師,今天無聊做了個demo,此demo是SSH框架。由於太久沒有搭建,前前後後也出現很多瑣碎的問題,特地總結配置檔案的存放和配置。


專案目錄如圖:

.

hibernate.cfg.xml和struts.xml放在src/main/resources目錄下,applicationContext.xml則在下一層的spring。

接下里是web.xml的配置:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns="http://java.sun.com/xml/ns/javaee" 
	xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
	version="2.5">
	
	<filter>
		<filter-name>CharacterEncodingFilter</filter-name>
		<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
  		<init-param>
   			<param-name>encoding</param-name>
   			<param-value>utf-8</param-value>
  		</init-param>
 	</filter>
 	<filter-mapping>
  		<filter-name>CharacterEncodingFilter</filter-name>
  		<url-pattern>/*</url-pattern>
 	</filter-mapping>
	
	<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>
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>classpath*:spring/*.xml</param-value>
		<!-- <param-value>/WEB-INF/applicationContext.xml</param-value> -->
	</context-param>
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>
	
	<!-- session超時定義,單位為分鐘 -->
	<session-config>
		<session-timeout>60</session-timeout>
	</session-config>
</web-app>

引數CharacterEncodingFilter:顧名思義就是編碼過濾器,當jsp頁面與後臺java程式碼之間傳值編碼不一致時,過濾器就起到統一編碼的作用,解決傳值亂碼問題。

引數struts2:spring整合struts的必寫配置。

引數contextConfigLocation:配置spring配置檔案,這個路徑問題除錯了很久,

如果applicationContext.xml放在WEB-INF目錄下,引數值是<param-value>/WEB-INF/applicationContext.xml</param-value>;

如果applicationContext.xml放在src目錄下,引數值是<param-value>classpath:

applicationContext.xml</param-value>;

demo中我將配置檔案放到src/main/resources的spring,所以引數值是classpath*:spring/*.xml,匹配編譯路徑(src/main/resources)到spring的所有xml檔案。

applicationContext.xml:

<property name="configLocation" value="classpath:hibernate.cfg.xml"/>
配置hibernate.cfg.xml:因為hibernate配置檔案放在src/main/resources,屬於編譯路徑,直接能獲取。

最後說下struts.xml,在網上查struts.xml檔案應該放在哪個位置查了很久,一般都放在src路徑,否則會報錯如果要放在WEB-INF,需要在web.xml多加幾行配置,比較麻煩,所以也是建議放在src。