JSP中errorPage设置方法 |
1.设置errorPage:errorPage.jsp <%@page isErrorPage="true"%> Error'! <%=exception.getMessage()%> 2. 利用 <%@page info="Bad page"%> <% boolean tf = true; if(tf){ String info = getServletInfo(); throw new Exception("Exception in:" + info); } %> |