首页 > 编程 > JSP > 正文

JSP errorPage设置方法

2024-09-05 00:21:07
字体:
来源:转载
供稿:网友
JSP errorPage设置方法,大家可以参考下。

1.设置errorPage:errorPage.jsp

复制代码 代码如下:


<%@page isErrorPage="true"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
Error~!
<%=exception.getMessage()%>
</body>
</html>


2.应用

复制代码 代码如下:


<%@page info="Bad page"%>
<%@page errorPage="errorPage.jsp" %> //出错后转到
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<%
boolean tf = true;
if(tf){
String info = getServletInfo();
throw new Exception("Exception in:" + info);
}
%>
</body>
</html>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表