Exception
페이지 지시자 이용
예외 발생
1
2
3
4
5<%@ page errorPage="errorPage.jsp"%>
<%
int i = 40/0;
%?예외 페이지
1
2
3
4
5
6//반드시 true로 명시해야함
//명시해야 exception객체 사용가능
<%@ page isErrorPage="true"%>
<% response.setStatus(200); %>
<%= exception.getMessage() %>
Web.xml
파일 이용
1 | <error-page> |