这可以证明是一个非常noob的问题,我试图通过jsp文件理解生成的servlet。
这是我的代码
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<%!
public void jspInit(){
System.out.println("inside the init method");
int x = 10 /0;
}
public void jspDestroy(){
System.out.println("destroy");
}
%>
</body>
</html>
我不明白为什么它有时会在输出之前显示异常,“init方法内部”的消息被请求打印3次(可能是多次尝试?),如果出现异常,为什么jspDrestroy( )方法没有被调用。