为了使用JDK 5中引入的检测功能,可以使用传递给JVM的-javaagent标志.这会将一个Instrumentation类的实例注入静态premain方法.例如,在这样的类中:
public class MyClass {
public static Instrumentation inst;
public static void premain(String options,Instrumentation inst) {
MyClass.inst = inst;
}
}
使用适当的清单文件,您可以按如下方式运行:
java -javaagent:myfiles.jar SomeClass
这将调用premain方法然后从SomeClass调用main.在Java.SizeOf Project中使用此方法来猜测Java对象的大致大小.
好的,现在在Eclipse RCP each bundle has its own classloader中.这意味着我们存储在MyClass中的静态Instrumentation对于Eclipse应用程序是不可见的. javaagent使用一个类加载器,Eclipse bundle加载另一个.当我们从插件中访问MyClass.inst时它是null,因为该类与javaagent加载并称为premain on的类不同.
关于可能解决方案的其他线索是rcp邮件列表上的this thread.但没有定论.
有什么方法可以解决这个问题吗? Eclipse-BuddyPolicy在eclipsezone文章中暗示听起来不错.我试过了:
Eclipse-BuddyPolicy: app
在我的插件没有运气.我需要像Eclipse-BuddyPolicy这样的东西:javaagent.有任何想法吗?
最佳答案
我认为最简单的解决方案是使用全局属性对象. pre-main将instrumentation对象存储为全局属性,然后从任何位置访问它(属性对象在所有类加载器中都是相同的):
原文链接:https://www.f2er.com/java/437616.html[编辑:更新]
public class MyClass {
private static final String KEY = "my.instrumentation";
public static void premain(String options,Instrumentation inst) {
Properties props = System.getProperties();
if(props.get(KEY) == null)
props.put(KEY,inst);
}
public static Instrumentation getInstrumentation() {
return System.getProperties().get(KEY);
}
}