3

我最近开始研究 OSGi 框架。以下是我的 TestingBundle jar 中的类。下面是我的那个 Bundle 的 Activator 类。

public class Activator implements BundleActivator {

    private ServiceRegistration registration;

    @Override
    public void start(BundleContext context) throws Exception {

        registration = context.registerService(ITestFramework.class.getName(), new TestModelFramework(), null);

    }

    @Override
    public void stop(BundleContext context) throws Exception {


    }
}

下面是界面。

public interface ITestFramework {

    public void speak();

}

下面是实现上述接口的类

public class TestModelFramework implements ITestFramework {

    public TestModelFramework() {
    //
    }

    @Override
    public void speak() {

    System.out.println("Hello World");

    }

}

下面是我的主要应用程序代码,它将安装上述包,然后调用上述服务-

private static Framework framework = null;

static {
    try {
        FileUtils.deleteDirectory(new File("felix-cache"));
        FrameworkFactory frameworkFactory = ServiceLoader.load(FrameworkFactory.class).iterator().next();

        framework = frameworkFactory.newFramework(new HashMap<String, String>());
        framework.start();
    } catch (IOException e) {
        LOG.log(Level.SEVERE, "Exception in App::static block " +e);
    } catch (BundleException e) {
        LOG.log(Level.SEVERE, "Exception in App::static block " +e);
    }       
}

public App() {

    installTheBundles(); //this method will install and start my above bundle
    initializeModel();
}

private static void initializeModel() {

    try {

    ServiceReference serviceReference = framework.getBundleContext().getServiceReference(ITestFramework.class.getName());

// this line throws me an exception         
TestModelFramework service = (TestModelFramework) framework.getBundleContext().getService(serviceReference);

    service.speak();

    } catch (Exception e) {
        LOG.log(Level.SEVERE, "Exception in App::initializeModel " +e);
        e.printStackTrace();
    }
}

}

以下是我总是得到的例外 -

SEVERE: Exception in App::initializeModel java.lang.ClassCastException: com.host.domain.app.modelling.framework.TestModelFramework incompatible with com.host.domain.app.modelling.framework.IModellingFramework

我不确定我在这里做错了什么?谁能解释我在这里做错了什么?

4

1 回答 1

4

接口包,即只能由一个bundlecom.host.domain.app.modelling.framework导出。使用该包的所有其他包都应该导入它,而不是包含它们自己的副本。

对此的解释是,在 Java 中,类的标识由该类的完全限定名称加载它的 ClassLoader 定义。如果您从多个包(以及因此多个 ClassLoader)加载接口,则接口的每个副本都将被视为不同的、不兼容的接口。

于 2013-08-18T23:06:53.380 回答