评论

收藏

[JSP] JSP errorPage设置方法

开发技术 开发技术 发布于:2021-10-24 11:45 | 阅读数:350 | 评论:0

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>
关注下面的标签,发现更多相似文章