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;