-
[JSP] Error 페이지 만들기WEB/JSP 2022. 9. 19. 00:57
우리는 웹페이지를 이용할 때 종종 다음과 같은 오류 페이지를 볼 수 있다.
이번에는 사용자가 잘못된 경로를 입력했을 때 다음과 같은 오류 페이지를 보여줄 수 있도록 만들어 보았다.
naver 404 Erro page 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>
절대 경로와 상대경로
web.xml과 404error.jsp 위치 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>
잘못된 경로를 입력하였을 때 직접 설정한 404 Error Page 728x90'WEB > JSP' 카테고리의 다른 글
[JSP] JSP forward (0) 2022.09.19 [JSP] 구구단 (0) 2022.09.19 [JSP] 4가지 Scope (0) 2022.09.19 [JSP] HttpServlet (0) 2022.09.16 [JSP] Servlet Mapping (0) 2022.09.16