반응형
1. 에러페이지 생성
<%@ page isErrorPage="true"%>를 넣어준다
<%@ page language="java" contentType="text/html; charset=UTF-8" isErrorPage="true" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>에러 페이지</title>
</head>
<body>
${pageContext.exception.message }
</body>
</html>
2. 에러페이지 매핑
web.xml에 다음과 같은 방식으로 작성한다.
<error-page>
<exception-type>java.lang.RuntimeException</exception-type>
<location>/common/error.jsp</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/common/error.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/common/error.jsp</location>
</error-page>
반응형
'개발_웹 > Java' 카테고리의 다른 글
Java | 파일 업로드 (cos.jar) (0) | 2019.05.11 |
---|---|
Java | 파일 복사하기 (텍스트, 바이너리) (0) | 2019.05.11 |
Java | 웹 어플리케이션 경로 구하기 (ContextPath) (0) | 2019.05.11 |
Java | form 태그로 여러 타입의 input 값 전달하기 (0) | 2019.05.11 |
Java | 서블릿과 URL(컨트롤러) 매핑시키기 (web.xml 방식, 어노테이션 방식) (0) | 2019.05.11 |