API FullPath 메서드 추가

This commit is contained in:
daekuk
2025-12-05 11:02:01 +09:00
parent dad89efee5
commit d939826cf7
@@ -591,6 +591,7 @@ public class ApiInterfaceService extends OnlBaseService {
// 25.11.25 HS04 APIFULLPATH 추가.
List<AdapterUI> 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;