gpt4 book ai didi

java - 在非 osgi 项目中获取服务需要哪些 Maven 依赖项?

转载 作者:行者123 更新时间:2023-12-01 14:19:05 25 4
gpt4 key购买 nike

我有一个 Maven nononosgi 项目,需要从 osgi 项目获取服务。这是我的代码:

BundleContext context = FrameworkUtil.getBundle(this.getClass()).getBundleContext();
ServiceReference serviceReference = context.getServiceReference(MyClass.class.getName());
MyClass blah = (MyClass) new ServiceTracker(context, serviceReference, null).getService();
blah.doStuff();

这当然行不通,因为很多类都没有导入。我需要哪些依赖项才能使代码正常工作?

最佳答案

您可以在 http://search.maven.org 搜索依赖项基于类名(高级搜索)。

您需要 org.osgi:org.osgi.core 和 org.osgi:org.osgi.compendium。给出两者的“提供”范围。

关于java - 在非 osgi 项目中获取服务需要哪些 Maven 依赖项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17806158/

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