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>
您可能感兴趣的文章:- JSP常见的三个编译指令page、include、taglib
- JSP编译指令page、include详解
- JSP指令元素(page指令/include指令/taglib指令)复习整理
- JSP语法Page指令
- JSP页面pageEncoding和contentType属性
- 一个通用的jsp分页PageBean
- JSP中的编译指令和动作指令的两点区别
- jsp的常用指令有哪些(编译指令/动作指令整理)
- jsp中page指令用法详解