📄 jspdocument.jsp
字号:
<jsp:root
xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:c="http://java.sun.com/jstl/core"
version="1.2">
<jsp:directive.page contentType="text/html" />
<html>
<head>
<title>A JSP Document</title>
</head>
<body bgcolor="white">
<h1>All Request Parameters</h1>
<ul>
<c:forEach items="${paramValues}" var="current">
<li>
<c:out value="${current.key}" />:
<c:forEach items="${current.value}" var="parValue">
<br/>
<c:out value="${parValue}" />
</c:forEach>
</li>
</c:forEach>
</ul>
</body>
</html>
</jsp:root>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -