<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ page 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=UTF-8">
<title>예외 발생</title>
</head>
<body>
	<br/>에러가 발생했습니다.<br/>
	
	<a href="index.jsp">첫 화면으로 가기</a><br/>
	
	error type : <%=exception.getClass().getName() %><br/>
	error message : <%=exception.getMessage() %><br/>
	
</body>
</html>


<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ page errorPage="day03_04.jsp" %>
<!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=UTF-8">
<title>에러가 발생하는 페이지</title>
</head>
<body>
	널 포인트 예외가 발생하도록 만들었습니다.
	

	
	<%=request.getParameter("aa").toString() %>
	errorPage를 지정 했기 때문에 에러가 발생하면 지정된 페이지로 이동합니다.
</body>
</html>







<?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_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>02.BasicObject</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>500</error-code>
	<location>/day03_04.jsp</location>      
  </error-page>

</web-app>


<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ page 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=UTF-8">
<title>예외 발생</title>
</head>
<body>
	<br/>에러가 발생했습니다.<br/>
	
	<a href="index.jsp">첫 화면으로 가기</a><br/>
	
	error type : <%=exception.getClass().getName() %><br/>
	error message : <%=exception.getMessage() %><br/>
	
</body>
</html>


<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ page errorPage="day03_04.jsp" %>
<!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=UTF-8">
<title>에러가 발생하는 페이지</title>
</head>
<body>
	널 포인트 예외가 발생하도록 만들었습니다.
	
	
	<%String a; %>
	<%=a %>
	<pre>
	완전히 잘못된 문법 에러(코드500)이기 때문에 exception을 만들지 못하고
	에러 페이지로 이동하지 않습니다.
	
	해결방법 : web.xml에 error-page를 셋팅하기
	</pre>
	
	<%=request.getParameter("aa").toString() %>
	errorPage를 지정 했기 때문에 에러가 발생하면 지정된 페이지로 이동합니다.
</body>
</html>



'JSP > 2012.04강의(MySQL)' 카테고리의 다른 글

3일차 로그인  (0) 2012.05.23
3일차 Cookie  (0) 2012.05.23
3일차 jsp:forward로 이동할 페이지 선택하기  (0) 2012.05.23
3일차 jsp:forward로 JSP페이지 이동하기  (0) 2012.05.23
2일차 <jsp:include> 액션 태그  (0) 2012.05.22

+ Recent posts