我正在使用 OSGi BundleActivator 代码。当我尝试使用 Apache Karaf 安装它时,总是会出现Unable to install bundle mvn:com.baeldung/osgi-intro-sample-activator/1.0-SNAPSHOT: org.osgi.framework.BundleException: Unable to cache bundle: mvn:com.baeldung/osgi-intro-sample-activator/1.0-SNAPSHOT
错误。
我尝试遵循的教程在这里:https://www.baeldung.com/osgi
我使用的命令是bundle:install mvn:com.baeldung/osgi-intro-sample-activator/1.0-SNAPSHOT
。试图添加-s标志或使用install
而不是bundle:install
,但没有帮助。试图从Karaf根目录和捆绑包目录运行它,没有帮助。
在Karaf文件夹中,我尝试设置org.ops4j.pax.url.mvn.localRepository=/Users/bogdansalyp/.m2/repository
并没有帮助。
清空.m2/repository
,没有帮助。将其复制到bundle和Karaf文件夹中,没有帮助。
尝试从不同目录访问mvn install
和mvn clean install
,没有帮助。
Karaf是v4.2.6,maven是3.1.1
这是我的pom.xml:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>osgi-intro-sample-activator</artifactId>
<name>osgi-intro-sample-activator</name>
<!-- Please, note this is not the usual 'jar'. -->
<packaging>bundle</packaging>
<!-- com.baeldung/osgi-intro-sample-activator/1.0-SNAPSHOT -->
<parent>
<artifactId>osgi</artifactId>
<groupId>com.baeldung</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
<Bundle-Name>${project.artifactId}</Bundle-Name>
<Bundle-Version>${project.version}</Bundle-Version>
<!-- Qualified name of the class that exposes the activator iface. -->
<Bundle-Activator>com.baeldung.osgi.sample.activator.HelloWorld</Bundle-Activator>
<!-- One important thing to note: since you are not exporting the package "com.baeldung.osgi.sample.activator", you should at least add it to the Private-Package
instruction. Otherwise, the classes inside the package will not be copied to your bundle, as the default value of this instruction is empty. -->
<Private-Package>com.baeldung.osgi.sample.activator</Private-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
这是我使用的Java代码:
package com.baeldung.osgi.sample.activator;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
public class HelloWorld implements BundleActivator {
public void start(BundleContext ctx) {
System.out.println("Hello World.");
}
public void stop(BundleContext bundleContext) {
System.out.println("Goodbye World.");
}
}
代码结构可以在这里找到:https://github.com/eugenp/tutorials/tree/master/osgi/osgi-intro-sample-activator
在此先感谢您的帮助!
答案 0 :(得分:0)
如果我没记错的话,激活器不应位于私有包中,而应该是公开的。
可能是罪魁祸首:
<Private-Package>com.baeldung.osgi.sample.activator</Private-Package>
删除它。
答案 1 :(得分:0)
自从我使用Karaf以来已经有一段时间了,但是我却没什么想法。
IIRC中的“ org.osgi.framework.BundleException:无法缓存包”实际上意味着Karaf从提供的URL获取的内容不是可安装的包。所以
mvn install
(mvn package
不足以将捆绑软件安装到本地Maven存储库中, ,然后再尝试将其安装在Karaf中。1.0-SHAPSHOT
更改为1.0.0-SNAPSHOT
。不确定是否相关,但通常尝试使用semantic versions bundle:watch
代替bundle:install
(see the docs),当您将捆绑软件重新安装到本地Maven存储库时,捆绑软件也会自动更新。我隐约记得bundle:install
和SNAPSHOT捆绑包和/或本地Maven存储库中存在一些问题,但可惜没有详细信息。要检查的一件事是您的Maven repos and setting是正确的。
答案 2 :(得分:0)
也许有点晚了,但是错误表明karaf找不到捆绑包。检查.m2中的文件位置,或者检查生成的MANIFEST是否正确。 祝你好运!
答案 3 :(得分:0)
您应该用bundle:install mvn:com.baeldung/osgi-intro-sample-activator/1.0-SNAPSHOT
到bundle:install mvn:com.baeldung/osgi/1.0-SNAPSHOT
替换,因为您的artifactId是osgi。继续关注此链接
答案 4 :(得分:0)
我知道您已经提到它对您没有帮助,但它对我有用,并且可能对其他人有帮助,以设置位于
org.ops4j.pax.url.mvn.localRepository=
文件。