0

注意:就我而言,如果这很重要,我正在使用Apache Felix实现。

我已经编写了我用作测试的捆绑包。这是一个非常简单的“Hello World”包,它只stdout在启动/停止时打印消息:

public class Activator implements BundleActivator {

    @Override
    public void start(BundleContext context) throws Exception {
        System.out.println("Hello, World.");
    }

    @Override
    public void stop(BundleContext context) throws Exception {
        System.out.println("Goodbye, World.");
    }

}

还有一个MANIFEST文件发布起来毫无意义,因为当我通过Apache Felix控制台从标准发行版(可以在此处下载)部署上述捆绑包时,捆绑包开始并打印出消息。


我要做的下一步是使用编程方法部署相同的包。不幸的是,这对我不起作用。我的代码如下所示:

public static void main(String[] args) throws Exception {
    FrameworkFactory frameworkFactory = getFrameworkFactory();
    Framework framework = frameworkFactory.newFramework(null);

    System.out.println("BundleID = " + framework.getBundleId());
    System.out.println("State = " + getState(framework.getState()));

    framework.init();

    System.out.println("BundleID = " + framework.getBundleId());
    System.out.println("State = " + getState(framework.getState()));

    BundleContext bundleContext = framework.getBundleContext();
    bundleContext.addBundleListener((event) -> {
        System.out.println("Bundle Changed Event");
    });
    bundleContext.addFrameworkListener((event) -> {
        System.out.println("Framework Event");
    });
    bundleContext.addServiceListener((event) -> {
        System.out.println("Service Changed Event");
    });

    Bundle bundle = bundleContext.installBundle("file://<absolute-path-to-bundle-jar-same-as-above");

    System.out.println("BundleID = " + bundle.getBundleId());
    System.out.println("State = " + getState(bundle.getState()));

    bundle.start();

    System.out.println("BundleID = " + bundle.getBundleId());
    System.out.println("State = " + getState(bundle.getState()));
}

private static FrameworkFactory getFrameworkFactory() throws IllegalStateException {
    ServiceLoader<FrameworkFactory> loader = ServiceLoader.load(FrameworkFactory.class);

    FrameworkFactory factory = null;
    for (FrameworkFactory iterator : loader) {
        if (factory != null) {
            throw new IllegalStateException("Ambiguous SPI implementations.");
        }

        factory = iterator;
    }

    return factory;
}

private static String getState(int state) {
    switch (state) {
    case Bundle.UNINSTALLED:
        return "UNINSTALLED";
    case Bundle.INSTALLED:
        return "INSTALLED";
    case Bundle.RESOLVED:
        return "RESOLVED";
    case Bundle.STARTING:
        return "STARTING";
    case Bundle.STOPPING:
        return "STOPPING";
    case Bundle.ACTIVE:
        return "ACTIVE";
    default:
        throw new IllegalStateException("Unknown state");
    }
}

输出如下所示:

BundleID = 0
State = INSTALLED
BundleID = 0
State = STARTING
Bundle Changed Event
BundleID = 1
State = INSTALLED
BundleID = 1
State = INSTALLED

据我所知,捆绑包已安装,但最后 4 行表明bundle.start()由于某种原因被忽略了。

你能指出我缺少什么来完成这项工作吗?

4

1 回答 1

0

经过数小时的调试和javadoc仔细阅读后,这种情况正在发生,因为框架只是被初始化而不是被启动。要使示例工作,您必须简单地添加framework.start()after framework.init()(或者如果发现有必要,只需调用framwork.start()which 调用)。framework.init()

我留下这些信息,因为有一些令人困惑的事情:

  1. 官方文档,Apache Felix包含有关将框架嵌入主机应用程序的信息。不幸的是,只有一个例子使用了Apache Felix自定义机制,使其无法移植到其他实现。令人困惑的是警告说明,如果您想创建便携式解决方案,您应该使用init()getBundleContext(). 全文引用如下:

警告配置felix.systembundle.activators属性特定于 Felix 框架实现。如果您希望您的代码与其他框架实现一起使用,您应该调用init()框架实例并getBundleContext()直接使用。否则,方法将非常相似。

  1. 无参数版本init()方法的JavaDoc没有提到初始化与启动框架不同,虽然init(FrameworkListener...)有这样的信息。

在调用 start 之前,该框架不会真正启动。

于 2017-06-04T09:40:14.660 回答