繁体   English   中英

访问另一个osgi包中的资源?

[英]Access resources in another osgi bundle?

我使用eclipse Plug-in项目向导(使用eclipse Helios)创建了两个OSGI包A和B.

在bundle BI的清单文件中添加了bundle A作为依赖项。 此外,我已经在A中导出了包,因此它们对于B是可见的。我还在捆绑包A中有一个.properties文件,我希望它对bundle B可见。在bundle AI的build.properties窗格中指定了:

source.. = src/
bin.includes = META-INF/,\
               .,\
               bundle_A.properties

现在在BI中尝试使用以下命令加载.properties文件:

  private Properties loadProperties() {
    Properties properties = new Properties();
    InputStream istream = this.getClass().getClassLoader().getResourceAsStream(
        "bundle_A.properties");
    try {
      properties.load(istream);
    } catch (IOException e) {
      logger.error("Properties file not found!", e);
    }
    return properties;
  }

但是这会产生一个nullpointer异常(在类路径中找不到该文件)。

是否可以从bundle A导出资源(就像导出包时一样)或者以某种方式从B以另一种方式访问​​A中的文件(从bundle B访问bundle A的类加载器)?

Bundle上的getEntry(String)方法用于此目的。 您可以使用它从任何捆绑包加载任何资源。 如果您不知道bundle中资源的确切路径,也请参阅方法findEntries()getEntryPaths()

没有必要掌握bundle的类加载器来做到这一点。

如果您正在编写Eclipse插件,可以尝试以下方法:

Bundle bundle = Platform.getBundle("your.plugin.id");

Path path = new Path("path/to/a/file.type");

URL fileURL = Platform.find(bundle, path);

InputStream in = fileURL.openStream();

您是否考虑过添加一个方法来捆绑加载和返回资源的A的API?

许多人可能会认为这是一个更好的设计,因为它允许更改资源的名称或方式,而不会破坏捆绑包A的客户端。

您是否尝试使用捆绑包A的BundleContext来加载资源?

试试/ ; 如果你不放/ ,类加载器将尝试从同一个包加载资源。

this.getClass().getClassLoader().getResourceAsStream( "/bundle_A.properties")

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM