Projekt in ein eigenes GIT-Repository ohne Parent-Modul separiert
[percentcodec] / accelerator-examples / jsp / src / main / webapp / WEB-INF / web.xml
diff --git a/accelerator-examples/jsp/src/main/webapp/WEB-INF/web.xml b/accelerator-examples/jsp/src/main/webapp/WEB-INF/web.xml
deleted file mode 100644 (file)
index 938240c..0000000
+++ /dev/null
@@ -1,46 +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>*.jsp</url-pattern>
-  </filter-mapping>
-
-  <filter-mapping>
-    <filter-name>accelerator</filter-name>
-    <url-pattern>*.jsp</url-pattern>
-  </filter-mapping>
-
-</web-app>