gpt4 book ai didi

java - 当为 osgi 使用声明性服务时,我可以在同一组件中提供和引用服务吗?

转载 作者:行者123 更新时间:2023-12-01 15:58:38 26 4
gpt4 key购买 nike

<?xml version="1.0" encoding="UTF-8"?>
<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" name="sensor_test">
<implementation class="test.sensor.version1.serviceImpl.SensorServiceImpl"/>
<service>
<provide interface="test.sensor.version1.serviceInterface.SensorServiceInterface"/>
</service>
<reference bind="setOntologyService" cardinality="0..1" interface="test.ontology.version1.serviceinterface.OntologyServiceInterface" name="OntologyServiceInterface" policy="dynamic" unbind="unsetOntologyService"/>
</scr:component>

如上所示,在同一个组件中提供和引用服务可以吗?例如,有两个bundle A和B,A提供服务供B使用,B也提供服务供A使用。遇到这种情况我该怎么办?

最佳答案

这似乎完全没问题,因为服务引用既是可选的又是动态的。

如果您定义了循环依赖关系,其中引用都是强制的,则 DS 将报告错误。必须有一种方法首先创建一个组件,并且通过强制引用,在创建另一个组件之前,两个组件都无法创建(但是,第三个 bundle “C”可以注册满足其中一个组件的服务)。

通过可选/动态引用,DS 可以构造一个未绑定(bind)引用的组件,然后构造另一个组件并将其注入(inject)回第一个组件。

关于java - 当为 osgi 使用声明性服务时,我可以在同一组件中提供和引用服务吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4478781/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com