我知道,在jsp中编写scriptlet代码是一种坏习惯,但在这里我只是为了理解Jsp / Servlet概念。
请告诉我,为什么即使在关闭制表符之后该页面仍在运行,然后才能达到错误状态?如何在关闭标签上停止它?
test.jsp:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Test</title>
</head>
<body>
<%
int i=0;
while(i<100)
{
i++;
System.out.println("Test is called...["+i+"]");
Thread.sleep(1000);
}
%>
</body>
</html>
答案 0 :(得分:1)
因为此代码在服务器上运行,而不是在浏览器中运行,并且服务器通常没有办法告诉您关闭了页面。如果TCP连接断开,脚本最终可能会抛出异常。