1

尝试在 Karaf 3.0.3 上安装分布式 cxf 1.6.0 时,我遇到了一个奇怪的依赖问题。

当谈到卡拉夫时,我仍然在教程的基础上,所以我不知道我错过了什么。2 小时的谷歌搜索带来了一点快乐。

我尝试从cxf dosgi 页面安装简单的欢迎程序服务,但尝试安装 cxf 功能让我陷入了僵局。

$ feature:repo-add cxf-dosgi 1.6.0
$ feature:install -v cxf
...
Found installed bundle: org.apache.cxf.cxf-rt-features-clustering [1101]
Found installed bundle: org.apache.cxf.bundle [1102]
Error executing command: Can't install feature cxf/0.0.0:
Could not start bundle mvn:org.apache.cxf/cxf-bundle-compatible/2.7.8 in feature(s) cxf-2.7.8: Unresolved constraint in bundle org.apache.cxf.bundle [1102]: Unable to resolve 1102.0: missing requirement [1102.0] osgi.wiring.bundle; (osgi.wiring.bundle=org.springframework.beans)

我到底在这里想念什么?我看到缺少 spring 依赖项,但我该如何修复它。我似乎在任何地方都找不到那个捆绑包,为什么 karaf 不抓住它?

4

1 回答 1

1

Karaf 易于使用的功能。在您的情况下,您只需要添加 cxf-dosgi 存储库,您已经正确完成了。要使用 dosgi,您需要安装正确的功能。

这可以通过安装相应的功能来完成。

feature:install -v cxf-dosgi-base

这将为它安装所有必需的功能。如果自动发现其他节点,您需要为其安装相应的功能。

feature:list 

将为您提供所有可用功能的列表。

于 2015-03-06T10:10:20.397 回答