From d939826cf7bd0e4a836dca907812507f41774fed Mon Sep 17 00:00:00 2001 From: daekuk Date: Fri, 5 Dec 2025 11:02:01 +0900 Subject: [PATCH] =?UTF-8?q?API=20FullPath=20=EB=A9=94=EC=84=9C=EB=93=9C=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../eai/rms/onl/transaction/apim/ApiInterfaceService.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/eactive/eai/rms/onl/transaction/apim/ApiInterfaceService.java b/src/main/java/com/eactive/eai/rms/onl/transaction/apim/ApiInterfaceService.java index 416553c..1d92416 100644 --- a/src/main/java/com/eactive/eai/rms/onl/transaction/apim/ApiInterfaceService.java +++ b/src/main/java/com/eactive/eai/rms/onl/transaction/apim/ApiInterfaceService.java @@ -591,6 +591,7 @@ public class ApiInterfaceService extends OnlBaseService { // 25.11.25 HS04 APIFULLPATH 추가. List adapters = adapterGroup.getAdapters(); + String inboundHttpMethod = vo.getInboundHttpMethod().toUpperCase(); for (AdapterUI adapter : adapters) { @@ -603,7 +604,7 @@ public class ApiInterfaceService extends OnlBaseService { for (AdapterPropUI prop : props) { if("API_PATH".equals(prop.getPrptyname())) { - String fullPath = prop.getPrpty2val() + "/" + vo.getInboundRestPath(); + String fullPath = inboundHttpMethod + "|" + prop.getPrpty2val() + "/" + vo.getInboundRestPath(); vo.setApiFullPath(fullPath); break;