WEB/JSP
[JSP] Error 페이지 만들기
다콩잉
2022. 9. 19. 00:57
우리는 웹페이지를 이용할 때 종종 다음과 같은 오류 페이지를 볼 수 있다.
이번에는 사용자가 잘못된 경로를 입력했을 때 다음과 같은 오류 페이지를 보여줄 수 있도록 만들어 보았다.
HTTP Error 코드
https://manybean.tistory.com/entry/WEB-HTTP-%EC%A3%BC%EC%9A%94-%EC%97%90%EB%9F%AC-%EC%BD%94%EB%93%9C
web.xml
'/' 최상위 디렉토리
<error-page>
<error-code>404</error-code>
<location>/error/404error.jsp</location>
</error-page>
절대 경로와 상대경로
404error.jsp
<%--
Created by IntelliJ IDEA.
User: UserK
Date: 2022-09-19
Time: 오전 12:35
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>404 Error</title>
</head>
<body>
해당 페이지를 연결할 수 없습니다.(404 Error)
</body>
</html>
728x90