gpt4 book ai didi

osgi - 如何在不同的包中使用 OSGI 服务

转载 作者:行者123 更新时间:2023-12-01 11:27:49 25 4
gpt4 key购买 nike

假设我有 Bundle A,它有一个接口(interface) HelloWorld 和函数 helloWorld()

现在,在另一个 bundle B 中,我按如下方式实现

@Service(HelloWorld.class)
@Component(immediate = true)
public class Test1Impl implements HelloWorld
{
public String helloWorld()
{
return "I'm from Bundle B";
}
}

我还有一个bundle C,我在做

@Service(HelloWorld.class)
@Component(immediate = true)
public class Test2Impl implements HelloWorld
{
public String helloWorld()
{
return "I'm from Bundle C";
}
}

现在,如果我只需要实现 Bundle C,那我该怎么办?例如,通常我会按以下方式进行操作,但在这种情况下不起作用。

Helloworld obj = sling.getService(HelloWorld.class);
obj.helloWorld();

最佳答案

您可以使用属性和过滤器来选择您想要获得的实现。

例如,您可以在 bundle C 中的实现上放置一个属性:

@Service(HelloWorld.class)
@Component(immediate = true)
@Property(name = "bundle", value = "bundle-c")
public class Test2Impl implements HelloWorld { .. }

然后使用过滤器来获取此实现。您将获得一系列与过滤器匹配的服务。

HelloWorld[] services = sling.getServices(HelloWorld.class, "(bundle=bundle-c)")

默认情况下,DS 放置一个带有组件名称的属性。这个属性是“component.id”,组件的名称默认是实现的完整类名。所以你也可以使用:

HelloWorld[] services = sling.getServices(HelloWorld.class, "(component.id=package.Test2Impl)")

关于osgi - 如何在不同的包中使用 OSGI 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35942314/

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