개발_웹/Java

Java | 에러 페이지 만들기

zuyo 2019. 5. 11. 15:17
반응형

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>
반응형