forked from kimhyungsik/ax_hub_mcp_tool
fix(core): restore missing variables from BusinessToolController
This commit is contained in:
@@ -73,6 +73,9 @@ public class BusinessToolController {
|
|||||||
// 1. 대상 Bean 및 Method 찾기 (ApplicationContext 활용)
|
// 1. 대상 Bean 및 Method 찾기 (ApplicationContext 활용)
|
||||||
Map<String, Object> arguments = params != null ? (Map<String, Object>) params.get("arguments") : null;
|
Map<String, Object> arguments = params != null ? (Map<String, Object>) params.get("arguments") : null;
|
||||||
Object targetBean = null;
|
Object targetBean = null;
|
||||||
|
Method targetMethod = null;
|
||||||
|
McpFunction targetFunctionAnnotation = null;
|
||||||
|
|
||||||
Map<String, Object> toolBeans = applicationContext.getBeansWithAnnotation(McpTool.class);
|
Map<String, Object> toolBeans = applicationContext.getBeansWithAnnotation(McpTool.class);
|
||||||
outerLoop:
|
outerLoop:
|
||||||
for (Object bean : toolBeans.values()) {
|
for (Object bean : toolBeans.values()) {
|
||||||
|
|||||||
Reference in New Issue
Block a user