|
@@ -1,71 +0,0 @@
|
|
|
-<?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"
|
|
|
- xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
|
|
|
- id="WebApp_ID" version="3.0">
|
|
|
- <display-name>edu-api-weixin Web Application</display-name>
|
|
|
-
|
|
|
- <filter>
|
|
|
- <filter-name>ajax</filter-name>
|
|
|
- <filter-class>cn.efunbox.filter.YunosApiFilter</filter-class>
|
|
|
- <init-param>
|
|
|
- <param-name>encoding</param-name>
|
|
|
- <param-value>utf-8</param-value>
|
|
|
- </init-param>
|
|
|
- </filter>
|
|
|
- <filter-mapping>
|
|
|
- <filter-name>ajax</filter-name>
|
|
|
- <url-pattern>/*</url-pattern>
|
|
|
- </filter-mapping>
|
|
|
-
|
|
|
-
|
|
|
- <context-param>
|
|
|
- <param-name>contextConfigLocation</param-name>
|
|
|
- <param-value>classpath:spring.xml</param-value>
|
|
|
- </context-param>
|
|
|
- <filter>
|
|
|
- <description>字符集过滤器</description>
|
|
|
- <filter-name>encodingFilter</filter-name>
|
|
|
- <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
|
|
|
- <init-param>
|
|
|
- <description>字符集编码</description>
|
|
|
- <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>
|
|
|
- <listener>
|
|
|
- <description>spring Listener</description>
|
|
|
- <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
|
|
- </listener>
|
|
|
- <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:spring-mvc.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>
|
|
|
- <servlet-mapping>
|
|
|
- <servlet-name>default</servlet-name>
|
|
|
- <url-pattern>*.html</url-pattern>
|
|
|
- </servlet-mapping>
|
|
|
- <listener>
|
|
|
- <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
|
|
|
- </listener>
|
|
|
- <welcome-file-list>
|
|
|
- <welcome-file>index.jsp</welcome-file>
|
|
|
- </welcome-file-list>
|
|
|
-</web-app>
|