我实际上正在用 ByteBuddy API 编写一个 Java 代理,我需要在其中监视一些方法。比方说我需要记录一个方法的执行时间。
这是我的代码:
public class PerfAgents {
public static void premain(String agentArgs, Instrumentation inst){
LOGGER.info("[Agent] Loading classes ...");
Class classToMonitor = getClassFromArgs(agentArgs);
String methodToMonitor = getMethodFromArgs(agentArgs);
installAgent(inst, classToMonitor, methodToMonitor);
}
private static void installAgent(Instrumentation instrumentation, Class<?> classToMonitor, String methodToMonitor) {
new AgentBuilder.Default()
.type(is(classToMonitor))
.transform((builder, typeDescription, classLoader, module) ->
{
LOGGER.info("Transforming {} for {}", method, classToMonitor.getSimpleName());
return builder.method(named(methodToMonitor))
.intercept(MethodDelegation.to(TimerInterceptor.class));
}).installOn(instrumentation);
}
}
这TimerInterceptor类似于LoggerInterceptor我在 ByteBuddy 教程中找到的,我在其中使用了@SuperCall注释。
问题不是我不确定 ByteBuddy 是否将转换应用于提供的类和方法。我可以看到代理正在我的应用程序中加载,但是当我执行我的监控方法时,没有任何反应。
这是我的 TimerInterceptor 类:
static class TimerInterceptor {
private static Logger LOGGER = LoggerFactory.getLogger(LogInterceptor.class);
public static Object log(@SuperCall Callable<Object> callable) throws Exception {
LocalTime start = LocalTime.now();
Object called = callable.call();
LocalTime end = LocalTime.now();
Duration between = Duration.between(start, end);
LOGGER.info("Execution time : {} ms", between.toMillis());
return called;
}
}
任何帮助,将不胜感激。
慕标琳琳
相关分类