blob: aa3046f64e234bd19a17ee8ce9b495fc31b85f61 (
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
29
30
31
32
|
<%@ 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:forEach items="${paramValues[parameter.key]}" var="value">
<c:out value="${value}"/><br>
</c:forEach>
</td>
</tr>
</c:forEach>
</table>
</c:if>
</body>
</html>
|