feat: add solgitReqList and get_mcp_tool_team_members tools
All checks were successful
Deploy to OCIWP / deploy (push) Successful in 6m31s

This commit is contained in:
jade
2026-07-29 10:26:32 +09:00
parent 4133b63595
commit 06b724459e
17 changed files with 510 additions and 4 deletions

View File

@@ -190,11 +190,13 @@ public class BusinessToolController {
}
}
// 4. 메서드 실행
long startTime = System.currentTimeMillis();
Object methodResult = null;
methodResult = targetMethod.invoke(targetBean, invokeArgument);
if (targetMethod.getParameterCount() == 0) {
methodResult = targetMethod.invoke(targetBean);
} else {
methodResult = targetMethod.invoke(targetBean, invokeArgument);
}
long elapsed = System.currentTimeMillis() - startTime;