|
|
|
|
@@ -1,50 +1,56 @@
|
|
|
|
|
<?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_3_0.xsd"
|
|
|
|
|
xsi:schemaLocation="
|
|
|
|
|
<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_3_0.xsd"
|
|
|
|
|
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">
|
|
|
|
|
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
|
|
|
|
|
id="WebApp_ID" version="3.0">
|
|
|
|
|
|
|
|
|
|
<display-name>Spring MVC Application</display-name>
|
|
|
|
|
<display-name>Spring MVC Custom Application</display-name>
|
|
|
|
|
|
|
|
|
|
<!-- Spring root -->
|
|
|
|
|
<context-param>
|
|
|
|
|
<param-name>contextClass</param-name>
|
|
|
|
|
<param-value>
|
|
|
|
|
<session-config>
|
|
|
|
|
<session-timeout>1</session-timeout>
|
|
|
|
|
</session-config>
|
|
|
|
|
|
|
|
|
|
<!-- Spring root -->
|
|
|
|
|
<context-param>
|
|
|
|
|
<param-name>contextClass</param-name>
|
|
|
|
|
<param-value>
|
|
|
|
|
org.springframework.web.context.support.AnnotationConfigWebApplicationContext
|
|
|
|
|
</param-value>
|
|
|
|
|
</context-param>
|
|
|
|
|
<context-param>
|
|
|
|
|
<param-name>contextConfigLocation</param-name>
|
|
|
|
|
<param-value>org.baeldung.spring</param-value>
|
|
|
|
|
</context-param>
|
|
|
|
|
</context-param>
|
|
|
|
|
<context-param>
|
|
|
|
|
<param-name>contextConfigLocation</param-name>
|
|
|
|
|
<param-value>org.baeldung.spring</param-value>
|
|
|
|
|
</context-param>
|
|
|
|
|
|
|
|
|
|
<listener>
|
|
|
|
|
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
|
|
|
|
</listener>
|
|
|
|
|
<listener>
|
|
|
|
|
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
|
|
|
|
</listener>
|
|
|
|
|
|
|
|
|
|
<!-- Spring child -->
|
|
|
|
|
<servlet>
|
|
|
|
|
<servlet-name>mvc</servlet-name>
|
|
|
|
|
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
|
|
|
|
|
<load-on-startup>1</load-on-startup>
|
|
|
|
|
</servlet>
|
|
|
|
|
<servlet-mapping>
|
|
|
|
|
<servlet-name>mvc</servlet-name>
|
|
|
|
|
<url-pattern>/</url-pattern>
|
|
|
|
|
</servlet-mapping>
|
|
|
|
|
<!-- Spring child -->
|
|
|
|
|
<servlet>
|
|
|
|
|
<servlet-name>mvc</servlet-name>
|
|
|
|
|
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
|
|
|
|
|
<load-on-startup>1</load-on-startup>
|
|
|
|
|
</servlet>
|
|
|
|
|
<servlet-mapping>
|
|
|
|
|
<servlet-name>mvc</servlet-name>
|
|
|
|
|
<url-pattern>/</url-pattern>
|
|
|
|
|
</servlet-mapping>
|
|
|
|
|
|
|
|
|
|
<!-- Spring Security -->
|
|
|
|
|
<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>/*</url-pattern>
|
|
|
|
|
</filter-mapping>
|
|
|
|
|
<!-- Spring Security -->
|
|
|
|
|
<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>/*</url-pattern>
|
|
|
|
|
</filter-mapping>
|
|
|
|
|
|
|
|
|
|
<!-- <welcome-file-list> -->
|
|
|
|
|
<!-- <welcome-file>index.html</welcome-file> -->
|
|
|
|
|
<!-- </welcome-file-list> -->
|
|
|
|
|
<!-- <welcome-file-list> -->
|
|
|
|
|
<!-- <welcome-file>index.html</welcome-file> -->
|
|
|
|
|
<!-- </welcome-file-list> -->
|
|
|
|
|
|
|
|
|
|
</web-app>
|