Karaf で開発されたはるかに大きなプロジェクト ( onosproject.org )のアプリケーション内で Apache Kafka プロデューサーをインポートして使用しようとしています。私のアプリケーションは 4 つのサービスを参照していますが、そのうちの 1 つだけが満たされているため、満たされていないコンポーネントが発生します。
onos> scr:list | grep com.foo.bar
115 | UNSATISFIED | com.foo.bar.AppComponent
3 つの不満なサービスを必要とするコードを削除した後、同じ動作になり、さらに奇妙に見えました。
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-bundle-plugin を使用:
<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で私の試行/ログのより詳細な説明を見つけてください。
どんな提案でも大歓迎です!:)