가자공부하러!

JSP 커스텀 에러페이지 설정(이클립스) 본문

공부/웹

JSP 커스텀 에러페이지 설정(이클립스)

오피스엑소더스 2019. 8. 20. 21:32

1. web xml에 추가

 

<error-page>
        <error-code>404</error-code>
        <location>/error/error.jsp</location>
    </error-page>
    <error-page>
    <error-code>500</error-code>
        <location>/error/error.jsp</location>
    </error-page>



2. 에러페이지 작성(경로 : WEB-INF/error)


<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ page isErrorPage="true" %>
<%
    response.setStatus(HttpServletResponse.SC_OK);
%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
404!!!
<script type="text/javascript">
    location.href="/main";
</script>
</body>
</html>




Comments