下面图老师小编要向大家介绍下jsp中error page设置方法,看起来复杂实则是简单的,掌握好技巧就OK,喜欢就赶紧收藏起来吧!
【 tulaoshi.com - Web开发 】
1.设置errorPage:errorPage.jsp
%@page isErrorPage="true"%
html
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)head
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)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
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)head
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)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/1603798.html
看过《jsp中error page设置方法》的人还看了以下文章 更多>>
解决安装MindManager 15中的 ERROR 1320错误
spring5605