webidor/src/main/webapp/WEB-INF/web.xml
changeset 35 2e85dd878f04
parent 34 34baf57f2d4e
child 36 d5ccf73ebbe5
     1.1 --- a/webidor/src/main/webapp/WEB-INF/web.xml	Sun Jul 12 13:35:58 2009 +0200
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,37 +0,0 @@
     1.4 -<?xml version="1.0" encoding="UTF-8"?>
     1.5 -<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
     1.6 -    <display-name>webidor</display-name>
     1.7 -    <context-param>
     1.8 -        <param-name>contextConfigLocation</param-name>
     1.9 -        <param-value>/WEB-INF/applicationContext.xml</param-value>
    1.10 -    </context-param>
    1.11 -    <filter>
    1.12 -      <filter-name>springSecurityFilterChain</filter-name>
    1.13 -      <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
    1.14 -    </filter>
    1.15 -
    1.16 -    <filter-mapping>
    1.17 -      <filter-name>springSecurityFilterChain</filter-name>
    1.18 -      <url-pattern>/*</url-pattern>
    1.19 -    </filter-mapping>
    1.20 -    <listener>
    1.21 -        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    1.22 -    </listener>
    1.23 -    <servlet>
    1.24 -        <servlet-name>dispatcher</servlet-name>
    1.25 -        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    1.26 -        <load-on-startup>2</load-on-startup>
    1.27 -    </servlet>
    1.28 -    <servlet-mapping>
    1.29 -        <servlet-name>dispatcher</servlet-name>
    1.30 -        <url-pattern>*.html</url-pattern>
    1.31 -    </servlet-mapping>
    1.32 -    <session-config>
    1.33 -        <session-timeout>
    1.34 -            30
    1.35 -        </session-timeout>
    1.36 -    </session-config>
    1.37 -    <welcome-file-list>
    1.38 -        <welcome-file>index.jsp</welcome-file>
    1.39 -    </welcome-file-list>
    1.40 -</web-app>