system print for test

This commit is contained in:
25W0075
2025-12-02 15:42:25 +09:00
parent 616156afb8
commit 99eb221377
@@ -184,6 +184,15 @@ public class ApiAdapterController implements HttpAdapterServiceKey {
String adapterGrpName = (idx != -1) ? serviceKey.substring(0, idx) : serviceKey; // ':' 이전 문자열 추출
//***
System.out.println("====== adptUriMap 상세 내용 =======");
for (Map.Entry<String, HttpDynamicInAdapterUri> entry : manager.adptUriMap.entrySet()) {
HttpDynamicInAdapterUri uriObj = entry.getValue();
System.out.println("GroupName="+uriObj.getAdptGrpName()
+ ", AdapterName=" + uirObj.getAdptName()
+ ", URI=" + uriObj.getUri());
}
System.out.println("================================");
for (int i = 0; i < 10; i++) {
HttpDynamicInAdapterUri adptUri = manager.getAdptUri(apiUri);
if (adptUri != null) {