|
@@ -1,40 +1,47 @@
|
|
|
<?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" id="WebApp_ID" version="2.5">
|
|
|
+<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
|
|
|
<display-name>efunbox-recommend</display-name>
|
|
|
- <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>
|
|
|
- <context-param>
|
|
|
- <param-name>contextConfigLocation</param-name>
|
|
|
- <param-value>classpath:spring.xml,classpath:mybatis-spring.xml</param-value>
|
|
|
- </context-param>
|
|
|
- <listener>
|
|
|
- <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
|
|
- </listener>
|
|
|
- <servlet>
|
|
|
- <servlet-name>springDispatcherServlet</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>springDispatcherServlet</servlet-name>
|
|
|
- <url-pattern>/</url-pattern>
|
|
|
- </servlet-mapping>
|
|
|
- <welcome-file-list>
|
|
|
- <welcome-file>index.html</welcome-file>
|
|
|
- <welcome-file>index.jsp</welcome-file>
|
|
|
- </welcome-file-list>
|
|
|
+ <!-- 解决工程编码过滤器 -->
|
|
|
+ <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>
|
|
|
+
|
|
|
+ <!-- 配置文件所在位置 -->
|
|
|
+ <context-param>
|
|
|
+ <param-name>contextConfigLocation</param-name>
|
|
|
+ <param-value>classpath:spring.xml,classpath:mybatis-spring.xml</param-value>
|
|
|
+ </context-param>
|
|
|
+ <!-- Spring配置(监听器) -->
|
|
|
+ <listener>
|
|
|
+ <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
|
|
+ </listener>
|
|
|
+
|
|
|
+ <!-- SpringMVC配置 -->
|
|
|
+ <servlet>
|
|
|
+ <servlet-name>springDispatcherServlet</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>springDispatcherServlet</servlet-name>
|
|
|
+ <url-pattern>/</url-pattern>
|
|
|
+ </servlet-mapping>
|
|
|
+
|
|
|
+ <welcome-file-list>
|
|
|
+ <welcome-file>index.html</welcome-file>
|
|
|
+ <welcome-file>index.jsp</welcome-file>
|
|
|
+ </welcome-file-list>
|
|
|
</web-app>
|