OSGi 类加载器找不到 class ClassNotFoundException

OSGi Classloader cant find class ClassNotFoundException

我正在为 XML 文档编写 rcp 应用程序。

我试图在不创建扩展对象的情况下加载我的扩展。

可悲的是,当我启动应用程序时,我得到一个 ClassNotFoundException

我不知道为什么它找不到我的 类,你们知道如何解决这个问题吗?

我的 XML 文档的一部分。标签是我的 类:

                        <Label>main</Label>
                        <Fields>
                            <Field id="main.text" type="text">
                                <Label>Flag</Label>
                            </Field>
                            <Field id="main.multilinetext" type="multilinetext">
                                <Label>Multiline Flag</Label>
                            </Field>
                            <Field id="main.negativnumber" type="number">
                                <Label>num</Label>
                            </Field>
                            <Field id="main.positivenumber" type="positivenumber">
                                <Label>positiv num</Label>
                            </Field>
                            <Field id="main.negativnumber" type="negativnumber">
                                <Label>negativ num</Label>
                            </Field>
                            <Field id="main.negativnumber" type="image">
                                <Label>img</Label>
                            </Field>
                        </Fields>
                    </Node>

这就是我加载 类 的代码:

        public void execute() {
        IExtensionRegistry registry = Platform.getExtensionRegistry();
        
        IConfigurationElement[] config = registry.getConfigurationElementsFor(FIELDWIDGET_ID);
        for (IConfigurationElement configElement : config) { 
            if (configElement.getAttribute("type") != null) {
                System.out.println(configElement.getAttribute("type"));
                String pluginId = configElement.getContributor().getName();
                Bundle bundle = Platform.getBundle(pluginId);
                try {
                    Class<?> theClass = bundle.loadClass("class");
                    Constructor<?> con = configElement.getClass().getConstructor(Field.class, Composite.class);
                    hashMap.put(configElement.getAttribute("type"), con);
                } catch (NoSuchMethodException | SecurityException | ClassNotFoundException e1) {
                    e1.printStackTrace();
                }
            }
            
        }
    }

您需要从配置元素中获取 class 属性的值,加载 class,然后访问 class 上的构造函数。

所以替换

Class<?> theClass = bundle.loadClass("class");
Constructor<?> con = configElement.getClass().getConstructor(Field.class, Composite.class);

String className = configElement.getAttribute("class");

Class<?> theClass = bundle.loadClass(className);

Constructor<?> con = theClass.getConstructor(Field.class, Composite.class);