JSP的出错处理
程序员文章站
2024-02-23 21:35:52
以下页面将产生一个例外: <%@ page errorpage="errorpge.jsp" %>
以下页面将产生一个例外:
<%@ page errorpage="errorpge.jsp" %>
<html>
<head>
<title>jsp 1.0 error page demo</title>
</head>
<body>
<h1>jsp 1.0 error page demo</h1>
<%
string s = null;
s.getbytes(); //这将给出 nullpointexception例外
%>
</body>
</html>
在出错后以下页面被调用:
<html>
<body bgcolor="black" text="#ffffff">
<%--@ page iserrorpage="true" --%>
<h1> attenion the fellowing error occurs</h1><br>
<pre><%= exception.getmessage() %></pre>
</body>
</html>
<%@ page errorpage="errorpge.jsp" %>
<html>
<head>
<title>jsp 1.0 error page demo</title>
</head>
<body>
<h1>jsp 1.0 error page demo</h1>
<%
string s = null;
s.getbytes(); //这将给出 nullpointexception例外
%>
</body>
</html>
在出错后以下页面被调用:
<html>
<body bgcolor="black" text="#ffffff">
<%--@ page iserrorpage="true" --%>
<h1> attenion the fellowing error occurs</h1><br>
<pre><%= exception.getmessage() %></pre>
</body>
</html>
上一篇: CAN接口简介