Project

General

Profile

1
<!DOCTYPE web-app PUBLIC
2
        "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
3
        "http://java.sun.com/dtd/web-app_2_3.dtd" >
4

    
5
<web-app>
6
  <display-name>Dnet Login</display-name>
7
  <context-param>
8
    <param-name>contextConfigLocation</param-name>
9
    <param-value>
10
      /WEB-INF/applicationContext.xml
11
    </param-value>
12
  </context-param>
13
  <context-param>
14
    <param-name>log4jConfigLocation</param-name>
15
    <param-value>/WEB-INF/log4j.properties</param-value>
16
  </context-param>
17

    
18
  <listener>
19
    <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
20
  </listener>
21

    
22
  <listener>
23
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
24
  </listener>
25

    
26
  <filter>
27
    <filter-name>springSessionRepositoryFilter</filter-name>
28
    <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
29
  </filter>
30
  <filter-mapping>
31
    <filter-name>springSessionRepositoryFilter</filter-name>
32
    <url-pattern>/*</url-pattern>
33
    <dispatcher>REQUEST</dispatcher>
34
    <dispatcher>ERROR</dispatcher>
35
  </filter-mapping>
36

    
37
  <filter>
38
    <filter-name>springSecurityFilterChain</filter-name>
39
    <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
40
  </filter>
41

    
42
  <filter-mapping>
43
    <filter-name>springSecurityFilterChain</filter-name>
44
    <url-pattern>/*</url-pattern>
45
  </filter-mapping>
46

    
47
</web-app>
(3-3/3)