1

我正在使用 Eclipse Virgo/Gemini 蓝图,并且有一个具有多种实现的接口:

实施1:

<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd">

<bean id="MyID1"
    class="ImplementationCLass1">
</bean>

<service ref="MyID1"
    interface="MyInterface" />

实施2:

<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd">

<bean id="MYID2"
    class="ImplementationClass2">
</bean>

<service ref="MYID2"
    interface="MyInterface" />

实施3:

<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd">

<bean id="MyID3"
    class="ImplementationClass3">
</bean>

<service ref="MyID3"
    interface="MyInterface" />

还有一个客户:

<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd">

<reference-list id="MyImplementations"
    interface="MyInterface" />

<bean id="clientID" class="ClientClass"
    init-method="startUp">

    <property name="services" ref="MyImplementations"></property>

</bean>

startUp 方法是一个简单的方法,它遍历整个列表并打印出一个简单的字符串(用于测试目的)

问题是如果我安装客户端捆绑包,我的列表中只有两个树服务。如果我停止并再次启动 Bundle,所有三个服务都在我的列表中。

任何想法/建议为什么?

是否可以告诉 virgo 该列表必须包含与 MyInterface 匹配的所有服务?

如果您需要更多信息,请随时询问

4

2 回答 2

2

参考列表的内容是动态的,随着匹配服务的出现和消失,项目将被添加和删除。但是您可以实现一个引用侦听器,当列表更改以跟踪可用服务时通知该侦听器。请参阅此处的讨论和示例

于 2013-01-23T09:51:09.313 回答
1

该列表确实包含所有匹配的服务MyInterface......在某个任意时刻。但随后出现了一项新服务。

真的,“所有服务”这个概念是没有意义的。您永远无法真正知道您是否拥有所有服务,因为以后总能有人发布新服务。您可以做的最好的事情是获取当前服务的快照,然后随着新服务的出现而动态调整。

于 2013-01-24T00:22:05.710 回答