今天图老师小编要向大家分享个JSP中errorPage设置方法教程,过程简单易学,相信聪明的你一定能轻松get!
【 tulaoshi.com - Web开发 】
1.设置errorPage:errorPage.jsp
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)%@page isErrorPage="true"%
html
head
meta http-equiv="Content-Type" content="text/html; charset=UTF-8"
titleJSP 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"
titleJSP Page/title
/head
body
%
boolean tf = true;
if(tf){
String info = getServletInfo();
throw new Exception("Exception in:" + info);
}
%
/body
/html
来源:http://www.tulaoshi.com/n/20160219/1603744.html
看过《JSP中errorPage设置方法》的人还看了以下文章 更多>>