如何在Eclipse RCP应用程序中使用java.lang.instrument?

时间:2010-01-14 11:54:08

标签: java eclipse-rcp instrumentation

为了使用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

main调用premain方法然后调用SomeClass。在Java.SizeOf Project中使用此方法来猜测Java对象的大致大小。

好的,现在在Eclipse RCP each bundle has its own classloader中。这意味着我们存储在MyClass中的静态Instrumentation对Eclipse应用程序不可见。 javaagent使用一个类加载器,Eclipse bundle加载另一个。当我们从插件中访问MyClass.inst时,它是null,因为 类与javaagent加载并调用premain的类不同。

关于可能的解决方案的其他线索是rcp邮件列表上的this thread。但没有定论。

有什么方法可以解决这个问题吗? eclipsezone文章中暗示的Eclipse-BuddyPolicy听起来不错。我试过了:

Eclipse-BuddyPolicy: app

在我的插件中没有运气。我需要像Eclipse-BuddyPolicy: javaagent这样的东西。有什么想法吗?

1 个答案:

答案 0 :(得分:4)

我认为最简单的解决方案是使用全局属性对象。 pre-main将instrumentation对象存储为全局属性,然后从任何位置访问它(属性对象在所有类加载器中都是相同的):

[编辑:更新]

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);
    }
}