如有 index.jsp 页,当出现后服务器端异异常时要转向到 errorPage.jsp,并在 errorPage.jsp 中把对应错误信息显示出来。我们需要在这两个页面分别加上指令 errorPage="errorPage.jsp" 和 isErrorPage="true"。
index.jsp
1 2 3 4 5 |
<%@page errorPage="errorPage.jsp" %> <% throw new Exception("exception from jsp"); %> |