1

在 karaf 中部署 jar 并且此捆绑包无法启动后,显示以下一些错误。

Exported Packages   org.apache.karaf.examples.command,version=1.0.0
Imported Packages   org.apache.karaf.examples.command.api,version=[1.0,2) from org.custom.command.custom-command-api (103)
org.osgi.framework,version=[1.8,2) from org.apache.felix.framework (0)
org.slf4j,version=[1.7,2) from org.ops4j.pax.logging.pax-logging-api (6)
**org.springframework.http -- Cannot be resolved
org.springframework.util -- Cannot be resolved
org.springframework.web.client -- Cannot be resolved**

为 spring-web 添加了所需的依赖项。参考下面的片段

<dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-web</artifactId>
            <version>5.1.9.RELEASE</version>
        </dependency>

从错误中我可以看到大部分时间它在导入包时失败,而我没有在导入包标记中指定任何内容。

<Import-Package>
                            *
                        </Import-Package>

任何帮助都非常感谢!

4

1 回答 1

0

除非您将它们作为功能安装,否则 Karaf 将没有 Spring 库。

登录到您的 karaf,然后尝试:

features:install spring-web
于 2019-09-25T16:09:04.830 回答