我正在使用 OSGi 声明式服务和设置注册 OSGi 服务
服务工厂=“真”
如下。
<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" name="test.Configuration">
<implementation class="test.ConfigurationImpl"/>
<service servicefactory="true">
<provide interface="test.Configuration"/>
</service>
</scr:component>
我正在尝试从另一个捆绑包中多次使用该服务。但是,它返回给我相同的服务实例。
这里可能出了什么问题?