org.springframework 无法在 karaf 中解析
org.springframework cannot resolve in karaf
在 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>
非常感谢任何帮助!
除非您将它们作为功能安装,否则 Karaf 不会有 Spring 库。
登录到您的 karaf,然后尝试:
features:install spring-web
在 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>
非常感谢任何帮助!
除非您将它们作为功能安装,否则 Karaf 不会有 Spring 库。
登录到您的 karaf,然后尝试:
features:install spring-web