Commit 29f3f5da5c216a1446ede18dbf814b65d6365bfa
1 parent
10b69295
1.
Showing
1 changed file
with
0 additions
and
51 deletions
src/main/webapp/WEB-INF/web.xml deleted
100644 → 0
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<web-app version="3.0" | |
| 3 | - xmlns="http://java.sun.com/xml/ns/javaee" | |
| 4 | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 5 | - xsi:schemaLocation="http://java.sun.com/xml/ns/javaee | |
| 6 | - http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"> | |
| 7 | - | |
| 8 | - <listener> | |
| 9 | - <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> | |
| 10 | - </listener> | |
| 11 | - <context-param> | |
| 12 | - <param-name>contextConfigLocation</param-name> | |
| 13 | - <param-value> | |
| 14 | - classpath:spring-application.xml; | |
| 15 | -<!-- classpath:spring-quartz.xml; --> | |
| 16 | - </param-value> | |
| 17 | - </context-param> | |
| 18 | - <filter> | |
| 19 | - <filter-name>encode</filter-name> | |
| 20 | - <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> | |
| 21 | - <init-param> | |
| 22 | - <param-name>encoding</param-name> | |
| 23 | - <param-value>UTF-8</param-value> | |
| 24 | - </init-param> | |
| 25 | - <init-param> | |
| 26 | - <param-name>forceEncoding</param-name> | |
| 27 | - <param-value>true</param-value> | |
| 28 | - </init-param> | |
| 29 | - </filter> | |
| 30 | - <filter-mapping> | |
| 31 | - <filter-name>encode</filter-name> | |
| 32 | - <url-pattern>/*</url-pattern> | |
| 33 | - </filter-mapping> | |
| 34 | - <servlet> | |
| 35 | - <servlet-name>springmvc</servlet-name> | |
| 36 | - <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> | |
| 37 | - <init-param> | |
| 38 | - <param-name>contextConfigLocation</param-name> | |
| 39 | - <param-value>classpath:spring-servlet.xml</param-value> | |
| 40 | - </init-param> | |
| 41 | - <load-on-startup>1</load-on-startup> | |
| 42 | - </servlet> | |
| 43 | - <servlet-mapping> | |
| 44 | - <servlet-name>springmvc</servlet-name> | |
| 45 | - <url-pattern>/*</url-pattern> | |
| 46 | - </servlet-mapping> | |
| 47 | - <display-name></display-name> | |
| 48 | - <welcome-file-list> | |
| 49 | - <welcome-file>index.jsp</welcome-file> | |
| 50 | - </welcome-file-list> | |
| 51 | -</web-app> |