|
|
|
@ -0,0 +1,68 @@
|
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<web-app version="3.0" 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_3_0.xsd">
|
|
|
|
|
|
|
|
|
|
<display-name>spring</display-name>
|
|
|
|
|
|
|
|
|
|
<!-- 加载Spring配置文件 -->
|
|
|
|
|
<context-param>
|
|
|
|
|
<param-name>contextConfigLocation</param-name>
|
|
|
|
|
<param-value>classpath:spring/spring.xml</param-value>
|
|
|
|
|
</context-param>
|
|
|
|
|
|
|
|
|
|
<!-- 字符集 过滤器 -->
|
|
|
|
|
<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>
|
|
|
|
|
</filter>
|
|
|
|
|
<filter-mapping>
|
|
|
|
|
<filter-name>encodingFilter</filter-name>
|
|
|
|
|
<url-pattern>/*</url-pattern>
|
|
|
|
|
</filter-mapping>
|
|
|
|
|
|
|
|
|
|
<!-- Spring监听器 -->
|
|
|
|
|
<listener>
|
|
|
|
|
<description>Spring监听器</description>
|
|
|
|
|
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
|
|
|
|
</listener>
|
|
|
|
|
<!-- 防止Spring内存溢出监听器 -->
|
|
|
|
|
<listener>
|
|
|
|
|
<listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class>
|
|
|
|
|
</listener>
|
|
|
|
|
|
|
|
|
|
<!-- Spring MVC -->
|
|
|
|
|
<servlet>
|
|
|
|
|
<servlet-name>SpringMVC</servlet-name>
|
|
|
|
|
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
|
|
|
|
|
<init-param>
|
|
|
|
|
<description>SpringMVC</description>
|
|
|
|
|
<param-name>contextConfigLocation</param-name>
|
|
|
|
|
<param-value>classpath:spring/spring-mvc.xml</param-value>
|
|
|
|
|
</init-param>
|
|
|
|
|
<load-on-startup>1</load-on-startup>
|
|
|
|
|
</servlet>
|
|
|
|
|
|
|
|
|
|
<!-- 本次需要做的配置,注意位置,要放在配置springmvc的url-pattern之前 -->
|
|
|
|
|
<!-- 表示当程序加载符合这些路径的资源时,不会通过dispatchservlet -->
|
|
|
|
|
<servlet-mapping>
|
|
|
|
|
<servlet-name>default</servlet-name>
|
|
|
|
|
<url-pattern>*.js</url-pattern>
|
|
|
|
|
<url-pattern>*.css</url-pattern>
|
|
|
|
|
<url-pattern>*.html</url-pattern>
|
|
|
|
|
<url-pattern>/upload/*</url-pattern>
|
|
|
|
|
</servlet-mapping>
|
|
|
|
|
|
|
|
|
|
<servlet-mapping>
|
|
|
|
|
<servlet-name>SpringMVC</servlet-name>
|
|
|
|
|
<url-pattern>/</url-pattern>
|
|
|
|
|
</servlet-mapping>
|
|
|
|
|
|
|
|
|
|
<!-- Session超时时间 -->
|
|
|
|
|
<!-- <session-config>
|
|
|
|
|
<session-timeout>15</session-timeout>
|
|
|
|
|
</session-config> -->
|
|
|
|
|
</web-app>
|