본문 바로가기

JSP(Java Server Page)

JSP 에러 페이지 처리

web.xml

<?xml version="1.0" encoding="utf-8"?>

<web-app xmlns="http://java.sun.com/xml/ns/j2ee"

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee

http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"

version="2.4">


<error-page>

<error-code>404</error-code>

<location>/error/error404.jsp</location>

</error-page>


<error-page>

<error-code>500</error-code>

<location>/error/error500.jsp</location>

</error-page>

</web-app>


error404.jsp

<%@ page contentType = "text/html; charset=utf-8" %>

<%

response.setStatus(HttpServletResponse.SC_OK);

%>

<html>

<head><title>에러</title></head>

<body>

요청하신 페이지는 존재하지 않습니다.

</body>

</html>



⋅400 요청실패

문법상 오류가 있어, 서버가 요청사항을 이해하지 못함, 클라이언트는 수정 없이 요청사항을 반복

하지 않을 것이다.


500 서버 내부 오류

웹 서버가 요청사항을 수행할 수 없다. 다시 한 번 요청해 본다


'JSP(Java Server Page)' 카테고리의 다른 글

contentType charset과 pageEncoding의 차이점  (0) 2013.12.27
GET 방식 파라미터 인코딩 처리  (0) 2013.12.26
JSP에서 boolean  (0) 2013.09.23
엔터로 버튼 작동하는 법?  (0) 2013.09.22
GET 방식 POST 방식 구분  (0) 2013.09.09