当前位置:编程学习 > JS >>

jsp的出错处理

以下页面将产生一个例外:

<%@ page errorPage="errorpge.jsp(SUN企业级应用的首选)" %>
<HTML>
<HEAD>
<TITLE>jsp(SUN企业级应用的首选) 1.0 Error Page Demo</TITLE>
</HEAD>
<BODY>
<H1>jsp(SUN企业级应用的首选) 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>
补充:Web开发 , Jsp ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,