<url-pattern>*.jsp</url-pattern>
</filter-mapping>
+ <filter-mapping>
+ <filter-name>accelerator</filter-name>
+ <url-pattern>*.html</url-pattern>
+ </filter-mapping>
<filter-mapping>
<filter-name>accelerator</filter-name>
<url-pattern>*.jsp</url-pattern>
--- /dev/null
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
+<html>
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+ <title>Static Page</title>
+ <link rel="stylesheet" type="text/css" media="all" href="/default.css">
+ </head>
+ <body>
+ <h1>Static Page</h1>
+ <p>This page is a static HTML-page</p>
+ <p>At the same time, it gives an overview over all tests...</p>
+ <h2>JSP-Pages</h2>
+ <ul>
+ <li><a href="/simple-page.jsp">A really simple JSP-page</a></li>
+ <li><a href="/page-with-include.jsp">A JSP-page with several includes</a></li>
+ <li><a href="/page-with-forward.jsp">A JSP-page with a forward to /simple-page.jsp</a></li>
+ </ul>
+ <h2>Static Content</h2>
+ <ul>
+ <li><a href="/index.html">A plain static HTML-file (this page!)</a></li>
+ <li><a href="/default.css">A plain static CSS-file</a></li>
+ </ul>
+ </body>
+</html>