OSGI中openorb和jdk冲突

发布于 2024-11-17 00:40:23 字数 411 浏览 2 评论 0原文

我在 osgi 中使用 openorb 时遇到以下异常。
我使用的是 openorb-1.3.1.jar 和 jdk1.6。
我认为 jdk 中的 openorb-1.3.1.jar 和 rt.jar 都包含许多重复项,从而导致了问题。
例如,发生以下错误是因为 org.omg.CORBA.ORB 类同时存在于 rt.jar 和 openorb-1.3.1.jar 中。
请提出解决问题的正确方法。

例外是这样的,

java.lang.LinkageError:加载程序 违反约束:加载程序(实例 之前发起的 加载具有名称的不同类型 “org/omg/CORBA/ORB”位于 java.lang.ClassLoader.findBootstrapClass...

I'm getting the bellow exception using openorb in osgi.
I'm using openorb-1.3.1.jar and jdk1.6.
I think both the openorb-1.3.1.jar and rt.jar in jdk is containing many duplicates which is causing the problem.
For eg, the bellow error is happening because org.omg.CORBA.ORB class is there in both rt.jar and openorb-1.3.1.jar .
Please suggest the correct way of resolving the problem.

The exception is like ,

java.lang.LinkageError: loader
constraint violation: loader (instance
of previosly initiated
loading for a different type with name
"org/omg/CORBA/ORB" at
java.lang.ClassLoader.findBootstrapClass....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

二手情话 2024-11-24 00:40:23

也许 openorb 正在使用它自己的 org.omg.CORBA 包的内部副本,但是您自己的捆绑包(我认为它以某种方式调用 openorb)已经导入了 org.omg。来自系统捆绑包的 CORBA(这意味着他们从 rt.jar 中获取)。

如果没有更多信息,很难制定单一解决方案,但原则是确保 openorb 和所有其他包从同一位置加载 org.omg.CORBA。这意味着

  • openorb 需要在其 Import-Package 标头中包含 org.omg.CORBA ,以便它从 rt.jar 获取该包而不是其自己的内部包复制;或者...
  • 您的捆绑包需要导入由 openorb 导出的 org.omg.CORBA 副本...希望它使用版本(例如 1.0.0)导出它,以便您的捆绑包可以说 Import -包:org.omg.CORBA;version="[1.0.0,2.0.0)"

Probably openorb is using its own internal copy of the org.omg.CORBA package, but your own bundles -- which I presume are invoking openorb in some way -- have imported org.omg.CORBA from the system bundle (meaning they get the one from rt.jar).

Without more information it's difficult to prescribe a single cure, but the principle is to make sure that openorb and all other bundles load org.omg.CORBA from the same place. That means that EITHER:

  • openorb needs to include org.omg.CORBA in its Import-Package header, so that it gets that package from rt.jar instead of its own internal copy; OR...
  • your bundles need to import the copy of org.omg.CORBA exported by openorb... hopefully it exports it with a version e.g. 1.0.0 so your bundles can say Import-Package: org.omg.CORBA;version="[1.0.0,2.0.0)"
oО清风挽发oО 2024-11-24 00:40:23

如果您使用 karaf 作为 OSGi 容器。您可以编辑 karaf“jre.properties”,它应该位于 /karaf/etc 中。删除openorb中已经存在的包

If you using karaf as your OSGi container. you can edit you karaf "jre.properties", which should be in /karaf/etc. Delete the package which is already in openorb

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文