在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
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> |
请发表评论