首页 > 编程 > JSP > 正文

JSP的出错处理

2020-07-27 21:49:13
字体:
来源:转载
供稿:网友
以下页面将产生一个例外:

<%@ 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>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表