spring mvc3 + hibernate web.xml配置模板

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
	version="2.5">

	<display-name></display-name>
	
	<!-- **************************************************************************************** -->
	<!--  									配置log4j路径										  -->
	<!-- **************************************************************************************** -->
	<context-param>
		<param-name>log4jConfigLocation</param-name>
		<param-value>/WEB-INF/config/log/log4j.properties</param-value>
	</context-param>
	<!--Spring log4j Config loader-->
	<listener>
		<listener-class>
			org.springframework.web.util.Log4jConfigListener
		</listener-class>
	</listener>
	
	
	
	<!-- **************************************************************************************** -->
	<!-- 							统一每次请求的字符编码 										  -->
	<!-- **************************************************************************************** -->
	<filter>
		<filter-name>encodingFilter</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>
		<init-param>
			<param-name>forceEncoding</param-name>
			<param-value>true</param-value>
		</init-param>
	</filter>
	<filter-mapping>
		<filter-name>encodingFilter</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
	
	
	
	<!-- **************************************************************************************** -->
	<!-- 							打开hibernate的session										  -->
	<!-- **************************************************************************************** -->
	<filter>
		<filter-name>hibernateFilter</filter-name>
		<filter-class>
			org.springframework.orm.hibernate3.support.OpenSessionInViewFilter
		</filter-class>
	</filter>
	<filter-mapping>
		<filter-name>hibernateFilter</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
	
	
	<!-- **************************************************************************************** -->
	<!-- 					Spring ApplicationContext配置文件的路径, 							  -->
	<!-- 				可使用通配符,多个路径用,号分隔此参数用于后面的Spring Context Loader		  -->
	<!-- **************************************************************************************** -->
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>
			/WEB-INF/config/configIndex.xml
		</param-value>
	</context-param>
	<!--Spring的ApplicationContext 载入 -->
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>
	
	
	
	<!-- **************************************************************************************** -->
	<!-- 							配置spring控制器,并设置配置文件位置							  -->
	<!-- **************************************************************************************** -->
	<servlet>
		<servlet-name>springServlet</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<init-param>
			<param-name>contextConfigLocation</param-name>
			<param-value>/WEB-INF/config/spring/spring-controller.xml</param-value>
		</init-param>
		<load-on-startup>1</load-on-startup>
	</servlet>
	<servlet-mapping>
		<servlet-name>springServlet</servlet-name>
		<url-pattern>/</url-pattern>
	</servlet-mapping>

    <!-- **************************************************************************************** -->
	<!-- 							Spring刷新Interceptor防止内存泄漏							  -->
	<!-- **************************************************************************************** -->
    <listener>
    	<listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class>
    </listener>

	<!-- **************************************************************************************** -->
	<!-- 							session超时定义,单位为分钟 									  -->
	<!-- **************************************************************************************** -->
	<session-config>
		<session-timeout>20</session-timeout>
	</session-config>



	<!-- **************************************************************************************** -->
	<!-- 							出错页面定义													  -->
	<!-- **************************************************************************************** -->
	<error-page>
		<exception-type>java.lang.Throwable</exception-type>
		<location>/WEB-INF/jsp/error/500.jsp</location>
	</error-page>
	<error-page>
		<error-code>500</error-code>
		<location>/WEB-INF/jsp/error/500.jsp</location>
	</error-page>
	<error-page>
		<error-code>404</error-code>
		<location>/WEB-INF/jsp/error/404.jsp</location>
	</error-page>
	
	<error-page>
		<exception-type>java.lang.Exception</exception-type>
		<location>/WEB-INF/jsp/error/500.jsp</location>
	</error-page>
</web-app>
 

你可能感兴趣的:(spring mvc)