OSGI中openorb和jdk冲突
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许 openorb 正在使用它自己的 org.omg.CORBA 包的内部副本,但是您自己的捆绑包(我认为它以某种方式调用 openorb)已经导入了 org.omg。来自系统捆绑包的 CORBA(这意味着他们从 rt.jar 中获取)。
如果没有更多信息,很难制定单一解决方案,但原则是确保 openorb 和所有其他包从同一位置加载 org.omg.CORBA。这意味着
Import-Package
标头中包含org.omg.CORBA
,以便它从 rt.jar 获取该包而不是其自己的内部包复制;或者...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 importedorg.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:org.omg.CORBA
in itsImport-Package
header, so that it gets that package from rt.jar instead of its own internal copy; OR...org.omg.CORBA
exported by openorb... hopefully it exports it with a version e.g. 1.0.0 so your bundles can sayImport-Package: org.omg.CORBA;version="[1.0.0,2.0.0)"
如果您使用 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