gpt4 book ai didi

osgi - PAX 考试 - 类未找到错误

转载 作者:行者123 更新时间:2023-12-04 17:52:59 30 4
gpt4 key购买 nike

我正在为我们的项目进行 PAX 集成测试,我在类加载方面遇到了一些问题。

我在 PAX(使用的 karaf 容器)中部署了几个包。 karaf 启动后,我可以看到我的包和服务已启动并处于事件状态。但是,在我的测试用例中,我引用了一个类(不是服务也不是组件),它将在我的测试执行期间使用。该类驻留在 bundle 中,并且 bundle 已启动并成功运行,但我在测试用例执行中访问该类时遇到 ClassnotFoundError,如下所示,

**java.lang.ClassNotFoundException: com.myproject.sample.bundle.DatabaseConfig
at** org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:501)
at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:421)
at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:412)
at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
at com.integrationtest.testcases.internal.development.LaunchContainerTest.populateDBProfiles(LaunchContainerTest.java:189)
at com.integrationtest.testcases.internal.development.LaunchContainerTest.testLaunchOSGiContainerWithDefualtSettingsAndSleep(LaunchContainerTest.java:152)
Failed tests:  
LaunchContainerTest.testLaunchOSGiContainerWithDefualtSettingsAndSleep:152->populateDBProfiles:189
▒ ClassNotFound

和容器有关吗?

最佳答案

由于您的测试本身也将在 OSGi 上下文中运行,因此您需要调整您的测试。动态生成的测试包需要知道它需要导入有问题的类。为此,您可以添加专门的探针配置方法。像下面这样:

@ProbeBuilder
public TestProbeBuilder probeConfiguration(TestProbeBuilder probe) {
//make sure the needed imports are there.
probe.setHeader(Constants.IMPORT_PACKAGE, "*,com.myproject.sample.bundle.*");
return probe;
}

关于osgi - PAX 考试 - 类未找到错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42999639/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com