我正在尝试在使用 Karaf 开发的更大项目(onosproject.org)的应用程序中导入和使用 Apache Kafka 生产者。我的应用程序引用了四个服务,其中只有一个满足,导致组件不满意:
onos> scr:list | grep com.foo.bar
115 | UNSATISFIED | com.foo.bar.AppComponent
删除需要三个不满意服务的代码后,我得到了相同的行为,看起来更奇怪。
onos> scr:details com.foo.bar.AppComponent
Component Details
Name : com.foo.bar.AppComponent
State : UNSATISFIED
Properties :
service.pid=com.foo.bar.AppComponent
component.name=com.foo.bar.AppComponent
component.id=115
References
Reference : hostService
State : satisfied
Multiple : single
Optional : mandatory
Policy : static
Service Reference : Bound Service ID 1023 (org.onosproject.net.host.impl.HostManager)
从日志来看,激活工作正常,这让我相信pom.xml
的依赖项中的某些内容不正确。我正在使用 servicemix 构建:
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.kafka-clients</artifactId>
<version>0.8.2.2_1</version>
</dependency>
使用 Maven 捆绑插件:
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.5.3</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Import-Package>net.jpountz*;version="[1.2.0,1.3.0)";resolution:=optional,
javax.management*,
org.slf4j*;resolution:=optional,
org.xerial.snappy;resolution:=optional,
sun.misc;resolution:=optional,
sun.nio.ch;resolution:=optional
</Import-Package>
<Export-Package>
org.apache.kafka.*
</Export-Package>
</instructions>
</configuration>
</plugin>
我不知道是否必须这样做,但我还通过以下方式公开 servicemix 捆绑包features.xml
:
<bundle>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.kafka-clients/0.8.2.2_1</bundle>
我也尝试过使用org.apache.kafka/kafka-clients/0.8.2.2
servicemix 构建,但我有相同的行为。请在这个github repo中找到关于我的尝试/日志的更详细的描述。
任何建议将不胜感激!:)