gpt4 book ai didi

java - 是否曾在运行中的 JVM 中调用过此方法

转载 作者:行者123 更新时间:2023-11-29 04:09:56 24 4
gpt4 key购买 nike

有没有办法确定是否曾在运行的 JVM 中调用过某个方法。假设我有以下方法信息,我想知道它是否被调用过:

    "methodId": {
"className": "InvokerParser",
"filePath": "org/foo/commons/functors/InvokerParserformer.java",
"methodName": "parser"
}

最佳答案

如果应用程序在 HotSpot JVM 上运行,则可以使用 HotSpot Serviceability Agent 获取有关给定方法的信息。

这是一个工具,用于检查该方法是否已在正在运行的 JVM 中调用。

import sun.jvm.hotspot.oops.InstanceKlass;
import sun.jvm.hotspot.oops.Method;
import sun.jvm.hotspot.runtime.VM;
import sun.jvm.hotspot.tools.Tool;

public class CheckMethodCall extends Tool {
private static final String className = "java/util/HashMap";
private static final String methodName = "get";
private static final String methodSig = "(Ljava/lang/Object;)Ljava/lang/Object;";

@Override
public void run() {
boolean[] result = new boolean[2];

VM.getVM().getSystemDictionary().classesDo(klass -> {
if (klass.getName().asString().equals(className)) {
Method method = ((InstanceKlass) klass).findMethod(methodName, methodSig);
if (method != null) {
result[0] = true;
result[1] = method.getMethodCounters() != null &&
method.getInvocationCount() + method.interpreterInvocationCount() > 0;
}
}
});

if (!result[0]) {
System.out.println("Method not found");
} else if (result[1]) {
System.out.println("Method has been called");
} else {
System.out.println("Method has NOT been called");
}
}

public static void main(String[] args) {
new CheckMethodCall().execute(args);
}
}

需要sa-jdi.jar在类路径中(JDK 8 附带)。

运行

java -cp $JAVA_HOME/lib/sa-jdi.jar:. CheckMethodCall <pid>

哪里<pid>是要检查的 Java 进程 ID。

更新

JDK 11+的类似工具
使用 --add-modules=jdk.hotspot.agent并导出所有需要的包。

import sun.jvm.hotspot.oops.InstanceKlass;
import sun.jvm.hotspot.oops.Klass;
import sun.jvm.hotspot.oops.Method;
import sun.jvm.hotspot.runtime.VM;
import sun.jvm.hotspot.tools.Tool;

public class CheckMethodCall extends Tool {
private static final String className = "java/util/HashMap";
private static final String methodName = "get";
private static final String methodSig = "(Ljava/lang/Object;)Ljava/lang/Object;";

@Override
public void run() {
Klass klass = VM.getVM().getClassLoaderDataGraph().find(className);
if (klass == null) {
System.out.println("Class not found");
return;
}

Method method = ((InstanceKlass) klass).findMethod(methodName, methodSig);
if (method == null) {
System.out.println("Method not found");
return;
}

boolean called = method.getMethodCounters() != null &&
method.getInvocationCount() + method.interpreterInvocationCount() > 0;
System.out.println("Method " + (called ? "has been" : "has NOT been") + " called");
}

public static void main(String[] args) {
new CheckMethodCall().execute(args);
}
}

关于java - 是否曾在运行中的 JVM 中调用过此方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55698109/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com