JSP| 예외 페이지
예외 페이지의 필요성
- 친근한 페이지 > 사용자의 신뢰감
<%@ page errorPage=""%> : page 지시자를 이용한 예외처리
- <%@ page errorPage="이동할 페이지"%>: 에러가 나면 이 페이지로 이동
- <%@ response.setStatus(200)"%>: 에러(500)이 찍히는 걸 방지하기 위해 정상(200)을 찍는다
- <%@ page isErrorPage="true"%>: 이 페이지는 에러날 때 보여주는 페이지다
- <%= exception.getMessage()%>: 예외를 처리할 뿐이다
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<%@ page isErrorPage="true"%>
<% response.setStatus(200); %>
<!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 />
<!--@ page isErrorPage="true"일 때 사용가능 -->
<%= exception.getMessage() %>
</body>
</html>
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"
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>jsp_15_3_ex1_exceptionex</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>
<!-- 404 에러가 나면 보내는 페이지 -->
<location>/error404.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<!-- 500 에러가 나면 보내는 페이지 -->
<location>/error500.jsp</location>
</error-page>
</web-app>
- 페이지 지시자(%@ page errorPage=""%)는 없음
Author And Source
이 문제에 관하여(JSP| 예외 페이지), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@kji306301/JSP-예외-페이지저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)