|
|
@@ -0,0 +1,55 @@ |
|
|
|
<?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_3_0.xsd" |
|
|
|
version="3.0"> |
|
|
|
<display-name>api</display-name> |
|
|
|
<context-param> |
|
|
|
<param-name>contextConfigLocation</param-name> |
|
|
|
<param-value>classpath:applicationContext.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> |
|
|
|
<filter> |
|
|
|
<filter-name>springSecurityFilterChain</filter-name> |
|
|
|
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class> |
|
|
|
</filter> |
|
|
|
<filter-mapping> |
|
|
|
<filter-name>springSecurityFilterChain</filter-name> |
|
|
|
<url-pattern>/v1/admin/*</url-pattern> |
|
|
|
</filter-mapping> |
|
|
|
|
|
|
|
<listener> |
|
|
|
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> |
|
|
|
</listener> |
|
|
|
<listener> |
|
|
|
<listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class> |
|
|
|
</listener> |
|
|
|
<servlet> |
|
|
|
<description>spring mvc servlet</description> |
|
|
|
<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-servlet-common.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> |
|
|
|
<session-config> |
|
|
|
<session-timeout>30</session-timeout> |
|
|
|
</session-config> |
|
|
|
</web-app> |