1.设置errorPage:errorPage.jsp <%@page isErrorPage="true"%> JSP Page Error~! <%=exception.getMessage()%> 2.应用 <%@page info="Bad page"%> <%@page errorPage="errorPage.jsp" %> //出错后转到 JSP Page <% boolean tf = true; if(tf){ String info = getServletInfo(); throw new Exception("Exception in:" + info); } %>
|