MCPcopy Index your code
hub / github.com/seaswalker/spring-analysis / invoke

Method invoke

src/main/java/test/proxy/Handler.java:19–24  ·  view source on GitHub ↗
(Object proxy, Method method, Object[] args)

Source from the content-addressed store, hash-verified

17 }
18
19 @Override
20 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
21 String name = method.getName();
22 System.out.println("Method " + name + " is proxyed.");
23 return method.invoke(target, args);
24 }
25
26
27}

Callers

nothing calls this directly

Calls 1

getNameMethod · 0.45

Tested by

no test coverage detected