如果我仅将RDF4J与Maven一起使用(没有OSGi容器),则可以利用RDF4J提供的所有类。但是,当我将RDF4J与OpenDaylight一起使用时,由于未满足要求,我使用RDF4J类的捆绑包无法启动。
我正在使用IntelliJ Idea,并创建了一个新的项目,该项目的OpenDaylight原型为groupId:org.opendaylight.controller,artifactId:opendaylight-startup-archetype,版本:1.4.0-SNAPSHOT和存储库:https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/archetype-catalog.xml
我的包裹的群组ID:org.exmaple,
工件ID:rdfTest,
版本:1.0-SNAPSHOT,
我正在使用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>
并在impl / src / main / java / org / example / impl的RdfTestProvider.java中添加以下内容,则不会安装该功能。
public void init() {
LOG.info("RdfTestProvider Session Initiated");
Repository rep = new SailRepository(new MemoryStore());
rep.initialize();
LOG.info("Repo successfully initialized");
}
我认为问题是未安装RDF4J捆绑包。我尝试了其他方法来安装它,但没有一个起作用(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一起使用的bundle。后来,我将所有这些安装说明包括在要开发的功能下的features文件夹中的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>
关于maven - 即使安装了RDF4J捆绑包,OpenDaylight OSGi也无法找到RDF4J类,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46399320/