Maven-Plugin "Hibernate 4" implementiert
[percentcodec] / examples / jsp / src / main / webapp / faulty-page.jsp
1 <%@page contentType="text/html" pageEncoding="UTF-8" session="false" buffer="1kb" %>
2 <%@taglib uri="/WEB-INF/c.tld" prefix="c"%>
3 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
4
5 <html>
6   <head>
7     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8     <title>Faulty Page</title>
9   </head>
10   <body>
11     <h1>Faulty Page</h1>
12     <p>
13       This page will raise an error<c:forEach begin="1" end="${param['n']}" step="1">.</c:forEach>
14       after a while!
15     </p>
16     <p>
17       <strong>Ecactly, NOW:</strong>
18       <% if (true) throw new RuntimeException("Oh no!"); %>
19     </p>
20   </body>
21 </html>