업데이트
Some checks failed
Deploy to OCIWP / deploy (push) Has been cancelled

This commit is contained in:
jade
2026-09-04 17:44:21 +09:00
parent 072a31d883
commit 459895ed40
14 changed files with 1295 additions and 6 deletions

11
TestReflection.java Normal file
View File

@@ -0,0 +1,11 @@
import java.lang.reflect.Method;
import io.modelcontextprotocol.server.transport.HttpServletStreamableServerTransportProvider;
public class TestReflection {
public static void main(String[] args) throws Exception {
Class<?> clazz = HttpServletStreamableServerTransportProvider.Builder.class;
for (Method m : clazz.getDeclaredMethods()) {
System.out.println(m.getName());
}
}
}