에러 처리 페이지
- 관련 에러 페이지를 만든다.
- web.xml에 등록하여 해당페이지로 보낸다.
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>day09_ErrorPage</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<error-page>
<error-code>404</error-code>
<location>/error/error404.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/error/error500.jsp</location>
</error-page>
</web-app>
error500.jsp
; isErrorPage="true"
errorPage속성이 true이면 exception객체가 자동으로 생성되며
익셉션에 관련된 정보(오류메시지,익셉션클래스등)을 갖는다.
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR" isErrorPage="true" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
</head>
<body>
죄송합니다.<br/>
내부적으로 오류가 발생되었습니다.<br/>
오류메시지 : <%=exception.getMessage() %>
신속히 조치하겠습니다.<br/>
<a href="main.jsp">메인 페이지로 이동하기</a><br/>
</body>
</html>
error404.jsp
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR" isErrorPage="true" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
</head>
<body>
죄송합니다.<br/>
해당페이지를 찾지 못하였습니다.<br/>
<a href="main.jsp">메인 페이지로 이동하기</a><br/>
</body>
</html>
EX> main.jsp --> test.jsp ; error를 발생시켜 page이동
main.jsp
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
</head>
<body>
<a href="test.jsp">test.jsp</a>
</body>
</html>
test.jsp
; 오류를 발생시켜 에러 페이지로 이동하도록 한다.
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
</head>
<body>
<%
String ss=null;
int n=ss.length();
%>
n:<%=n %>
</body>
</html>
'WEB > JSP' 카테고리의 다른 글
아파치, 이클립스 설치 (0) | 2013.05.04 |
---|---|
26. Filter (0) | 2013.04.24 |
24. 템플릿 페이지 (0) | 2013.04.23 |
23. include (0) | 2013.04.23 |
22. JSTL (0) | 2013.04.23 |