WEb-INF\web.xml 파일에 추가한다.
404code.jsp
500code.jsp
<error-page>
<error-code>404</error-code>
<location>/error/404code.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/error/500code.jsp</location>
</error-page>
<error-page>
<exception-type> java.lang.NullPointerException </exception-type>
<location> /error/errorNullPointer.jsp </location>
</error-page>
파일생성 \WebContent\error\404code.jsp
파일생성 \WebContent\error\500code.jsp
파일생성 \WebContent\error\errorNullPointer.jsp404code.jsp
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<%
response.setStatus(HttpServletResponse.SC_OK);
%>
<h2> 404 에러페이지</h2>
현재 페이지는 404에러 페이지 입니다.<br>
경로 또는 파일명을 다시 확인해주세요.<br>
500code.jsp
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<%
response.setStatus(HttpServletResponse.SC_OK);
%>
<h2> 500 에러페이지</h2>
현재 페이지는 500에러 페이지 입니다.<br>
서버 내부 에러입니다.<br>
오타를 다시 확인하세요.<br>
'개인 공부방 > JSP' 카테고리의 다른 글
DB작업 (0) | 2011.12.14 |
---|---|
드라이버 로딩/DB접속 (0) | 2011.12.14 |
오라클 계정 확인, 기본명령어 (0) | 2011.12.13 |
Oracle 10g Expression 설치, 로그인, 계정생성 (0) | 2011.12.13 |
bean을 이용한 DB관리 (0) | 2011.12.13 |