From 902201a19d873e9cf4504807d0170aa56cb8cd6d Mon Sep 17 00:00:00 2001 From: cho Date: Fri, 30 Jan 2026 10:37:11 +0900 Subject: [PATCH] =?UTF-8?q?@RequestMapping=20=EC=9D=B4=EB=82=98=20Web.xml?= =?UTF-8?q?=EC=97=90=20=EC=A0=95=EC=9D=98=EB=90=98=EC=A7=80=20=EC=95=8A?= =?UTF-8?q?=EC=9D=80=20=EB=93=B1=EB=A1=9D=EB=90=98=EC=A7=80=EC=95=8A?= =?UTF-8?q?=EC=9D=80=20=EC=95=8A=EC=9D=80=20uri=20=ED=98=B8=EC=B6=9C?= =?UTF-8?q?=EC=8B=9C,=20error.jsp=EB=A1=9C=20=EB=B9=A0=EC=A7=90.=20?= =?UTF-8?q?=EA=B8=B0=EB=B3=B8=20=EC=97=90=EB=9F=AC=20=EB=A9=94=EC=84=B8?= =?UTF-8?q?=EC=A7=80=20null=20->=20"can=20not=20find=20Adapter=20Uri"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WebContent/error.jsp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/WebContent/error.jsp b/WebContent/error.jsp index 1363dfc..59b8628 100644 --- a/WebContent/error.jsp +++ b/WebContent/error.jsp @@ -1,3 +1,4 @@ +<%@page import="org.apache.commons.lang3.StringUtils"%> <%@page import="com.eactive.eai.common.util.MessageUtil"%> <%@ page import="java.io.*, java.util.*"%> <%@ page language="java" contentType="text/html;charset=utf-8" isErrorPage="true"%> @@ -17,6 +18,12 @@ if (statusCode != null && statusCode == 401) { } String message = (String)request.getAttribute("errorMessage"); + + +if ( message == null ) { + message = "can not find Adapter Uri"; +} + String jsonErrorMessage = MessageUtil.makeJsonErrorMessage(code, message); out.println(jsonErrorMessage); %>