我使用org.apache.servicemix.bundles.hystrix依赖将Hystrix捆绑为OSGI bundle。然而,我正面临着这个问题:
org.osgi.framework.BundleException: Could not resolve module: [828]
Unresolved requirement: Import-Package: com.netflix.hystrix; version="[1.5.0,2.0.0)"有人能帮我这个忙吗?
谢谢!
发布于 2018-02-27 00:11:09
该错误告诉您,您尝试安装和解析的包需要某个包,并且没有提供此包的包。
因此,在您的情况下,com.netflix.hystrix包丢失了。这意味着您没有安装hystrix包,或者您安装的版本与版本范围[1.5.0,2.0.0).不匹配
https://stackoverflow.com/questions/48990215
复制相似问题