summaryrefslogtreecommitdiffstats
path: root/WebContent/ParamPrinter.jsp
blob: ed0e99163606056408848a3b5eb0df791bbca829 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Parameter Printer</title>
</head>
<body>
<c:if test="${not empty param}">
	<table border="1">
		<thead>
			<tr>
				<td>Key</td>
				<td>Value</td>
			</tr>
		</thead>
		<c:forEach items="${param}" var="parameter">
			<tr>
				<td><c:out value="${parameter.key}"/></td>
				<td><c:out value="${parameter.value}"/></td>
			</tr>
		</c:forEach>
	</table>
</c:if>
</body>
</html>