|
@@ -0,0 +1,49 @@
|
|
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
+<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
|
|
|
|
|
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
+ xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
|
|
|
|
|
+ http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
|
|
|
|
|
+ version="4.0">
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 1. 配置 Spring 监听器(加载 spring-context.xml) -->
|
|
|
|
|
+ <context-param>
|
|
|
|
|
+ <param-name>contextConfigLocation</param-name>
|
|
|
|
|
+ <param-value>classpath:spring-context.xml</param-value>
|
|
|
|
|
+ </context-param>
|
|
|
|
|
+ <listener>
|
|
|
|
|
+ <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
|
|
|
|
+ </listener>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 2. 配置 Spring MVC 前端控制器 -->
|
|
|
|
|
+ <servlet>
|
|
|
|
|
+ <servlet-name>dispatcher</servlet-name>
|
|
|
|
|
+ <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
|
|
|
|
|
+ <init-param>
|
|
|
|
|
+ <param-name>contextConfigLocation</param-name>
|
|
|
|
|
+ <param-value>classpath:spring-mvc.xml</param-value>
|
|
|
|
|
+ </init-param>
|
|
|
|
|
+ <load-on-startup>1</load-on-startup>
|
|
|
|
|
+ </servlet>
|
|
|
|
|
+ <servlet-mapping>
|
|
|
|
|
+ <servlet-name>dispatcher</servlet-name>
|
|
|
|
|
+ <url-pattern>/</url-pattern>
|
|
|
|
|
+ </servlet-mapping>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 3. 字符编码过滤器 -->
|
|
|
|
|
+ <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>
|
|
|
|
|
+</web-app>
|