Projekt in ein eigenes GIT-Repository ohne Parent-Modul separiert
[percentcodec] / accelerator-examples / spring / src / main / webapp / WEB-INF / web.xml
diff --git a/accelerator-examples/spring/src/main/webapp/WEB-INF/web.xml b/accelerator-examples/spring/src/main/webapp/WEB-INF/web.xml
deleted file mode 100644 (file)
index 683aa66..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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">
-
-  <!-- Context Configuration locations for Spring XML files -->
-
-  <context-param>
-    <param-name>contextConfigLocation</param-name>
-    <param-value>classpath:/config.xml</param-value>
-  </context-param>
-
-
-  <!-- Listener-Definitions -->
-
-  <listener>
-    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
-  </listener>
-
-
-  <!-- Filter-Definitions -->
-
-  <filter>
-    <filter-name>accelerator</filter-name>
-    <filter-class>de.juplo.accelerator.AcceleratorFilter</filter-class>
-  </filter>
-
-  <filter>
-    <filter-name>logger</filter-name>
-    <filter-class>de.juplo.testingtools.LoggingHttpServletResponseFilter</filter-class>
-  </filter>
-
-
-  <!-- Filter-Mappings -->
-
-  <filter-mapping>
-    <filter-name>logger</filter-name>
-    <url-pattern>*.html</url-pattern>
-  </filter-mapping>
-
-  <filter-mapping>
-    <filter-name>accelerator</filter-name>
-    <url-pattern>*.html</url-pattern>
-  </filter-mapping>
-
-
-  <!-- Servlet-Definitions -->
-
-  <servlet>
-    <servlet-name>dispatcher-servlet</servlet-name>
-    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
-    <init-param>
-      <param-name>contextConfigLocation</param-name>
-      <param-value>
-      </param-value>
-    </init-param>
-    <load-on-startup>1</load-on-startup>
-  </servlet>
-
-
-  <!-- Servlet-Mappings -->
-
-  <servlet-mapping>
-    <servlet-name>dispatcher-servlet</servlet-name>
-    <url-pattern>*.html</url-pattern>
-  </servlet-mapping>
-
-</web-app>