|
|
|
|
@ -1,26 +1,24 @@
@@ -1,26 +1,24 @@
|
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?> |
|
|
|
|
<!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN' 'http://java.sun.com/dtd/web-app_2_3.dtd'> |
|
|
|
|
|
|
|
|
|
<!-- |
|
|
|
|
- Contacts web application |
|
|
|
|
- |
|
|
|
|
- web.xml for "filter" artifact only. |
|
|
|
|
- Tutorial web application |
|
|
|
|
- |
|
|
|
|
- $Id$ |
|
|
|
|
--> |
|
|
|
|
|
|
|
|
|
<web-app> |
|
|
|
|
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" |
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
|
|
|
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4"> |
|
|
|
|
|
|
|
|
|
<display-name>Spring Security Tutorial Application</display-name> |
|
|
|
|
|
|
|
|
|
<!-- |
|
|
|
|
|
|
|
|
|
<!-- |
|
|
|
|
- Location of the XML file that defines the root application context |
|
|
|
|
- Applied by ContextLoaderListener. |
|
|
|
|
--> |
|
|
|
|
<context-param> |
|
|
|
|
<param-name>contextConfigLocation</param-name> |
|
|
|
|
<param-value> |
|
|
|
|
classpath:applicationContext-business.xml |
|
|
|
|
classpath:applicationContext-business.xml |
|
|
|
|
/WEB-INF/applicationContext-security-ns.xml |
|
|
|
|
</param-value> |
|
|
|
|
</context-param> |
|
|
|
|
@ -51,20 +49,20 @@
@@ -51,20 +49,20 @@
|
|
|
|
|
<listener> |
|
|
|
|
<listener-class>org.springframework.security.ui.session.HttpSessionEventPublisher</listener-class> |
|
|
|
|
</listener> |
|
|
|
|
|
|
|
|
|
<!-- |
|
|
|
|
- Provides core MVC application controller. See contacts-servlet.xml. |
|
|
|
|
--> |
|
|
|
|
<servlet> |
|
|
|
|
<servlet-name>bank</servlet-name> |
|
|
|
|
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> |
|
|
|
|
<load-on-startup>1</load-on-startup> |
|
|
|
|
</servlet> |
|
|
|
|
|
|
|
|
|
<servlet-mapping> |
|
|
|
|
<servlet-name>bank</servlet-name> |
|
|
|
|
<url-pattern>*.html</url-pattern> |
|
|
|
|
</servlet-mapping> |
|
|
|
|
|
|
|
|
|
<!-- |
|
|
|
|
- Provides core MVC application controller. See contacts-servlet.xml. |
|
|
|
|
--> |
|
|
|
|
<servlet> |
|
|
|
|
<servlet-name>bank</servlet-name> |
|
|
|
|
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> |
|
|
|
|
<load-on-startup>1</load-on-startup> |
|
|
|
|
</servlet> |
|
|
|
|
|
|
|
|
|
<servlet-mapping> |
|
|
|
|
<servlet-name>bank</servlet-name> |
|
|
|
|
<url-pattern>*.html</url-pattern> |
|
|
|
|
</servlet-mapping> |
|
|
|
|
|
|
|
|
|
<welcome-file-list> |
|
|
|
|
<welcome-file>index.jsp</welcome-file> |
|
|
|
|
|