diff --git a/WebContent/jsp/onl/transaction/apim/apiInterfaceManDetail.jsp b/WebContent/jsp/onl/transaction/apim/apiInterfaceManDetail.jsp index 585bd45..62ee6e2 100644 --- a/WebContent/jsp/onl/transaction/apim/apiInterfaceManDetail.jsp +++ b/WebContent/jsp/onl/transaction/apim/apiInterfaceManDetail.jsp @@ -830,7 +830,12 @@ //표준이 아닐경우 업무추출키 셋팅되어야 됨 $("input[name=bzwkSvcKeyName]").val($("input[name=eaiTranName]").val()); } - + + // 사용자 편의를 위해 inboundRestPath 앞에 "/" 는 제외함. + $("input[name=inboundRestPath]").val(function(index, value) { + return value.replace(/^\/+/, ""); + }); + var postData = $('#ajaxForm').serializeArray(); if (isDetail){ postData.push({ name: "cmd" , value:"UPDATE"});