|
@@ -0,0 +1,97 @@
|
|
|
|
+<?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>
|
|
|
|
+ <dispatcher>REQUEST</dispatcher>
|
|
|
|
+ <dispatcher>FORWARD</dispatcher>
|
|
|
|
+ </filter-mapping>
|
|
|
|
+
|
|
|
|
+ <!-- 默认的spring配置文件是在WEB-INF下的applicationContext.xml -->
|
|
|
|
+ <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>
|
|
|
|
+
|
|
|
|
+ <!-- 日志配置文件 -->
|
|
|
|
+ <context-param>
|
|
|
|
+ <param-name>log4jConfigLocation</param-name>
|
|
|
|
+ <param-value>classpath:log4j.properties</param-value>
|
|
|
|
+ </context-param>
|
|
|
|
+
|
|
|
|
+ <!-- springMVC的核心控制器 -->
|
|
|
|
+ <servlet>
|
|
|
|
+ <servlet-name>springMVC</servlet-name>
|
|
|
|
+ <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
|
|
|
|
+ <init-param>
|
|
|
|
+ <param-name>contextConfigLocation</param-name>
|
|
|
|
+ <param-value>classpath*:springMVC-servlet.xml</param-value>
|
|
|
|
+ </init-param>
|
|
|
|
+ <load-on-startup>1</load-on-startup>
|
|
|
|
+ </servlet>
|
|
|
|
+ <servlet-mapping>
|
|
|
|
+ <servlet-name>springMVC</servlet-name>
|
|
|
|
+ <url-pattern>/</url-pattern>
|
|
|
|
+ </servlet-mapping>
|
|
|
|
+
|
|
|
|
+ <!-- Spring Security -->
|
|
|
|
+ <!--
|
|
|
|
+ <filter>
|
|
|
|
+ <filter-name>springSecurityFilterChain</filter-name>
|
|
|
|
+ <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
|
|
|
|
+ </filter>
|
|
|
|
+ <filter-mapping>
|
|
|
|
+ <filter-name>springSecurityFilterChain</filter-name>
|
|
|
|
+ <url-pattern>/*</url-pattern>
|
|
|
|
+ </filter-mapping>
|
|
|
|
+ -->
|
|
|
|
+
|
|
|
|
+ <!-- Druid连接池监控页面 -->
|
|
|
|
+ <servlet>
|
|
|
|
+ <servlet-name>DruidStatView</servlet-name>
|
|
|
|
+ <servlet-class>com.alibaba.druid.support.http.StatViewServlet</servlet-class>
|
|
|
|
+ </servlet>
|
|
|
|
+ <servlet-mapping>
|
|
|
|
+ <servlet-name>DruidStatView</servlet-name>
|
|
|
|
+ <url-pattern>/druid/*</url-pattern>
|
|
|
|
+ </servlet-mapping>
|
|
|
|
+
|
|
|
|
+ <!-- session配置 -->
|
|
|
|
+ <session-config>
|
|
|
|
+ <session-timeout>120</session-timeout>
|
|
|
|
+ </session-config>
|
|
|
|
+
|
|
|
|
+ <!-- 欢迎页面 -->
|
|
|
|
+ <welcome-file-list>
|
|
|
|
+ <welcome-file>index.html</welcome-file>
|
|
|
|
+ <welcome-file>index.jsp</welcome-file>
|
|
|
|
+ </welcome-file-list>
|
|
|
|
+
|
|
|
|
+ <!-- 错误页面 -->
|
|
|
|
+ <error-page>
|
|
|
|
+ <error-code>404</error-code>
|
|
|
|
+ <location>/WEB-INF/jsp/404.jsp</location>
|
|
|
|
+ </error-page>
|
|
|
|
+ <error-page>
|
|
|
|
+ <error-code>500</error-code>
|
|
|
|
+ <location>/WEB-INF/jsp/500.jsp</location>
|
|
|
|
+ </error-page>
|
|
|
|
+</web-app>
|