解决! 这是一个类路径问题。感谢
我想部署和解决碎片捆绑包。如果我使用方法noStart(),束片段保持状态INSTALLED但我期望状态RESOLVED。因此,bundle主机无法看到其资源。使用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;
}
我做错了什么?
谢谢和问候! 罗兰