serverhang.jsp
来自「ajax patterns 这是关于ajax设计模式方面的原代码」· JSP 代码 · 共 18 行
JSP
18 行
<html>
<head>
<title>Hanging Page</title>
<meta http-equiv="Cache-Control" content="max-age=0" />
<meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="Expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="Pragma" content="no-cache" />
</head>
<body>
<%
Thread.currentThread().sleep( 10000);
%>
Hello, after a ten
second sleep!
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?