📄 debug.jsp
字号:
<%@ page contentType="text/html" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%@ taglib prefix="ora" uri="orataglib" %>
<html>
<head>
<title>Debug Output</title>
</head>
<body bgcolor="white">
<%-- Add test variables to the request scope --%>
<c:set var="aString" scope="request" value="Hello World!" />
<jsp:useBean id="aDate" scope="request" class="java.util.Date" />
<c:set var="aNumber" scope="request" value="${aDate.minutes}" />
<h1>Debug Output</h1>
<ora:debug type="headers" />
<ora:debug type="cookies" />
<ora:debug type="params" />
<ora:debug type="requestScope" />
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -