解决了!这是一个类路径问题。谢谢
我想部署和解决一个零散的捆绑包。如果我使用 noStart() 方法,包片段保持在 INSTALLED 状态,但我希望状态为 RESOLVED。因此,捆绑主机无法看到其资源。使用 Apache Felix 一切正常。
@Configuration
public Option[] config() {
Option[] conf = options(
systemProperty("org.osgi.framework.startlevel.beginning").value("4"),
mavenBundle().groupId("mygroup").artifactId("myfragmentedbundle").version("1.0.0.0").noStart(),
mavenBundle().groupId("mygroup").artifactId("myhostbundle").version("1.0.0.0").startLevel(3).start(),
junitBundles());
return conf;
}
我究竟做错了什么?
谢谢并恭祝安康!罗兰