即使在安装 RDF4J 包之后,OpenDaylight OSGi 也无法找到 RDF4J 类

OpenDaylight OSGi not able to find RDF4J classes even after installing RDF4J bundles

如果我将 RDF4J 与 Maven(没有 OSGi 容器)一起使用,我可以利用 RDF4J 提供的所有 类。但是当我将 RDF4J 与 OpenDaylight 一起使用时,我使用 RDF4J 类 的包由于未满足要求而无法启动。 我正在使用 IntelliJ Idea,我使用 groupId:org.opendaylight.controller、artifactId:opendaylight-startup-archetype、version:1.4.0-SNAPSHOT 和存储库创建了一个带有 OpenDaylight 原型的新项目: https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/archetype-catalog.xml

我的包裹组 ID:org.exmaple, 工件 ID:rdfTest, 版本:1.0-快照, 我正在使用 maven 3.3.9

原型编译成功,我可以安装所有功能。 (./karaf/target/assembly/bin/karaf 然后通过 feature:install 命令安装特性)

但是当我在 impl 文件夹 pom.xml 中添加 RDF4J 依赖时

  <dependency>
      <groupId>org.eclipse.rdf4j</groupId>
      <artifactId>rdf4j-runtime-osgi</artifactId>
      <version>2.2.2</version>
  </dependency>

并在RdfTestProvider.java中添加以下内容impl/src/main/java/org/example/impl,该功能不会安装。

    public void init() {
    LOG.info("RdfTestProvider Session Initiated");
    Repository rep = new SailRepository(new MemoryStore());
    rep.initialize();
    LOG.info("Repo successfully initialized");
}

我认为问题在于未安装 RDF4J 包。我尝试了不同的安装方法,但 none 有效 (installing 3rd party non-osgi bundles)

有什么方法可以将 RDF4J 与 OpenDaylight 一起使用吗?

好的,我现在已经可以使用了。我手动安装了 rdf4j-runtime-osgi 包和其他必需的依赖项。这些是我安装的包:

bundle:install -s mvn:org.mapdb/mapdb/1.0.8
bundle:install -s mvn:com.spatial4j/spatial4j/0.4.1
bundle:install -s mvn:com.opencsv/opencsv/3.2
bundle:install -s mvn:org.apache.httpcomponents/httpcore-osgi/4.4.6
bundle:install -s mvn:org.apache.httpcomponents/httpclient-osgi/4.5.3
bundle:install -s mvn:com.fasterxml.jackson.core/jackson-annotations/2.9.0
bundle:install -s mvn:com.fasterxml.jackson.core/jackson-core/2.9.0
bundle:install -s mvn:com.fasterxml.jackson.core/jackson-databind/2.9.0
bundle:install -s mvn:ch.qos.logback/logback-core/1.2.2
bundle:install -s mvn:org.slf4j/slf4j-api/1.7.25
bundle:install -s mvn:ch.qos.logback/logback-classic/1.2.2
bundle:install -s mvn:com.github.jsonld-java/jsonld-java/0.11.1
bundle:install -s mvn:org.eclipse.rdf4j/rdf4j-runtime-osgi/2.2.2

然后开始使用 RDF4J 和 bundle:start 捆绑包。后来,我将所有这些安装说明包含在我正在开发的功能下的功能文件夹中的 features.xml 文件中,这样我就不必每次都手动安装它们了。

    <bundle><![CDATA[wrap:mvn:org.mapdb/mapdb/1.0.8$Bundle-Version=1.0.8&Bundle-SymbolicName=mapdb]]></bundle>
    <bundle><![CDATA[wrap:mvn:com.spatial4j/spatial4j/0.4.1$Bundle-Version=0.4.1&Bundle-SymbolicName=spatial4j]]></bundle>
    <bundle><![CDATA[wrap:mvn:com.opencsv/opencsv/3.2$Bundle-Version=3.2&Bundle-SymbolicName=opencsv]]></bundle>
    <bundle><![CDATA[wrap:mvn:org.apache.httpcomponents/httpcore-osgi/4.4.6$Bundle-Version=4.4.6&Bundle-SymbolicName=httpcore-osgi]]></bundle>
    <bundle><![CDATA[wrap:mvn:org.apache.httpcomponents/httpclient-osgi/4.5.3$Bundle-Version=4.5.3&Bundle-SymbolicName=httpclient-osgi]]></bundle>
    <bundle><![CDATA[wrap:mvn:com.fasterxml.jackson.core/jackson-annotations/2.9.0$Bundle-Version=2.9.0&Bundle-SymbolicName=jackson-annotations]]></bundle>
    <bundle><![CDATA[wrap:mvn:com.fasterxml.jackson.core/jackson-core/2.9.0$Bundle-Version=2.9.0&Bundle-SymbolicName=jackson-core]]></bundle>
    <bundle><![CDATA[wrap:mvn:com.fasterxml.jackson.core/jackson-databind/2.9.0$Bundle-Version=2.9.0&Bundle-SymbolicName=jackson-databind]]></bundle>
    <bundle><![CDATA[wrap:mvn:ch.qos.logback/logback-core/1.2.2$Bundle-Version=1.2.2&Bundle-SymbolicName=logback-core]]></bundle>
    <bundle><![CDATA[wrap:mvn:org.slf4j/slf4j-api/1.7.25$Bundle-Version=1.7.25&Bundle-SymbolicName=slf4j-api]]></bundle>
    <bundle><![CDATA[wrap:mvn:ch.qos.logback/logback-classic/1.2.2$Bundle-Version=1.2.2&Bundle-SymbolicName=logback-classic]]></bundle>
    <bundle><![CDATA[wrap:mvn:com.github.jsonld-java/jsonld-java/0.11.1$Bundle-Version=0.11.1&Bundle-SymbolicName=jsonld-java]]></bundle>
    <bundle><![CDATA[wrap:mvn:org.eclipse.rdf4j/rdf4j-runtime-osgi/2.2.2$Bundle-Version=2.2.2&Bundle-SymbolicName=rdf4j-runtime]]></bundle>