From f276b3c01812f96eb047b5a1bb231f47207bbba2 Mon Sep 17 00:00:00 2001 From: ecpla Date: Thu, 27 Jan 2022 14:18:17 +0900 Subject: [PATCH] =?UTF-8?q?=EC=86=8C=EC=9E=A5=EC=9E=90=EB=A3=8C=EA=B4=80?= =?UTF-8?q?=20=EC=97=90=EB=9F=AC=ED=8E=98=EC=9D=B4=EC=A7=80=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/WEB-INF/web.xml | 34 ++++++++++++++++++- .../common/{error404.jsp => errorCommon.jsp} | 0 2 files changed, 33 insertions(+), 1 deletion(-) rename src/main/webapp/common/{error404.jsp => errorCommon.jsp} (100%) diff --git a/src/main/webapp/WEB-INF/web.xml b/src/main/webapp/WEB-INF/web.xml index a07b2258..55402e55 100644 --- a/src/main/webapp/WEB-INF/web.xml +++ b/src/main/webapp/WEB-INF/web.xml @@ -86,14 +86,46 @@ java.lang.Throwable /common/error-throw.jsp + + 401 + /common/errorCommon.jsp + + + 403 + /common/errorCommon.jsp + 404 - /common/error404.jsp + /common/errorCommon.jsp + + + 405 + /common/errorCommon.jsp + + + 408 + /common/errorCommon.jsp + + + 413 + /common/errorCommon.jsp + + + 414 + /common/errorCommon.jsp 500 /common/error500.jsp + + 501 + /common/errorCommon.jsp + + + 505 + /common/errorCommon.jsp + diff --git a/src/main/webapp/common/error404.jsp b/src/main/webapp/common/errorCommon.jsp similarity index 100% rename from src/main/webapp/common/error404.jsp rename to src/main/webapp/common/errorCommon.jsp