From 608481180dfadca10135f1a65fb47c2d9022b2a4 Mon Sep 17 00:00:00 2001 From: jade Date: Thu, 16 Jul 2026 14:08:10 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20MciTestController=20=EB=82=B4?= =?UTF-8?q?=EB=B6=80=20=ED=8C=A8=ED=82=A4=EC=A7=80=20=EA=B2=BD=EB=A1=9C?= =?UTF-8?q?=EB=A5=BC=20=ED=92=80=EB=84=A4=EC=9E=84=20=EB=8C=80=EC=8B=A0=20?= =?UTF-8?q?import=EB=A1=9C=20=EB=AA=85=EC=8B=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../biz/mcp/tool/other/presentation/MciTestController.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/axhub-tool-other/src/main/java/io/shinhanlife/axhub/biz/mcp/tool/other/presentation/MciTestController.java b/axhub-tool-other/src/main/java/io/shinhanlife/axhub/biz/mcp/tool/other/presentation/MciTestController.java index a65fe22..4fcde95 100644 --- a/axhub-tool-other/src/main/java/io/shinhanlife/axhub/biz/mcp/tool/other/presentation/MciTestController.java +++ b/axhub-tool-other/src/main/java/io/shinhanlife/axhub/biz/mcp/tool/other/presentation/MciTestController.java @@ -5,6 +5,7 @@ import io.shinhanlife.axhub.common.integration.mci.dto.MciRequestWrapper; import io.shinhanlife.axhub.common.integration.mci.dto.ShinhanCommonHeaderDto; import lombok.Data; import lombok.RequiredArgsConstructor; +import jakarta.servlet.http.HttpServletRequest; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; @@ -39,7 +40,7 @@ public class MciTestController { } @PostMapping("/send") - public String testSendMci(jakarta.servlet.http.HttpServletRequest request, @RequestBody SampleBizData bizData) { + public String testSendMci(HttpServletRequest request, @RequestBody SampleBizData bizData) { try { MciRequestWrapper wrapper = new MciRequestWrapper<>();