From 729f3bfaf447c318e5c4ec0d9c4ac28506a166dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EB=B0=B1=ED=96=89?= Date: Tue, 24 Sep 2024 21:41:19 +0900 Subject: [PATCH] =?UTF-8?q?[apigateway]=20=EC=9D=B4=ED=81=B4=EB=A6=BD?= =?UTF-8?q?=EC=8A=A4=20=EB=AC=B8=EC=A0=9C(Problems)=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cloud/apigateway/api/MessageSourceApiController.java | 2 +- .../apigateway/exception/ReactiveExceptionHandlerConfig.java | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/backend/apigateway/src/main/java/org/egovframe/cloud/apigateway/api/MessageSourceApiController.java b/backend/apigateway/src/main/java/org/egovframe/cloud/apigateway/api/MessageSourceApiController.java index 3689551..70a925c 100644 --- a/backend/apigateway/src/main/java/org/egovframe/cloud/apigateway/api/MessageSourceApiController.java +++ b/backend/apigateway/src/main/java/org/egovframe/cloud/apigateway/api/MessageSourceApiController.java @@ -3,7 +3,6 @@ package org.egovframe.cloud.apigateway.api; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.context.MessageSource; -import org.springframework.context.i18n.LocaleContextHolder; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RestController; @@ -25,6 +24,7 @@ import java.util.Locale; * 수정일 수정자 수정내용 * ---------- -------- --------------------------- * 2021/08/10 jaeyeolkim 최초 생성 + * 2024/09/24 이백행 컨트리뷰션 이클립스 문제(Problems) 해결 * */ @Slf4j diff --git a/backend/apigateway/src/main/java/org/egovframe/cloud/apigateway/exception/ReactiveExceptionHandlerConfig.java b/backend/apigateway/src/main/java/org/egovframe/cloud/apigateway/exception/ReactiveExceptionHandlerConfig.java index 4df9b1a..639735c 100644 --- a/backend/apigateway/src/main/java/org/egovframe/cloud/apigateway/exception/ReactiveExceptionHandlerConfig.java +++ b/backend/apigateway/src/main/java/org/egovframe/cloud/apigateway/exception/ReactiveExceptionHandlerConfig.java @@ -6,8 +6,6 @@ import org.springframework.boot.web.error.ErrorAttributeOptions; import org.springframework.boot.web.reactive.error.DefaultErrorAttributes; import org.springframework.boot.web.reactive.error.ErrorAttributes; import org.springframework.context.MessageSource; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; import org.springframework.context.i18n.LocaleContextHolder; import org.springframework.web.reactive.function.server.ServerRequest; @@ -31,6 +29,7 @@ import java.util.Map; * 수정일 수정자 수정내용 * ---------- -------- --------------------------- * 2021/07/16 jaeyeolkim 최초 생성 + * 2024/09/24 이백행 컨트리뷰션 이클립스 문제(Problems) 해결 * */ @Slf4j