API FullPath 메서드 추가
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user