首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网络技术 > 网络基础 >

Exception in thread "main" java.lang.LinkageError异常的解决

2012-09-13 
Exception in thread main java.lang.LinkageError错误的解决错误代码: Exception in thread main jav

Exception in thread "main" java.lang.LinkageError错误的解决
错误代码:
Exception in thread "main" java.lang.LinkageError: JAXB 2.0 API is being loaded from the bootstrap classloader, but this RI (from jar:file:/D:/workspace/A8_Common/webapp/WEB-INF/lib/jaxb-impl.jar!/com/sun/xml/bind/v2/model/impl/ModelBuilder.class) needs 2.1 API. Use the endorsed directory mechanism to place jaxb-api.jar in the bootstrap classloader. (See http://java.sun.com/j2se/1.5.0/docs/guide/standards/)

错误原因:
  在用myeclipse进行调试代码的时候,我们经常在java文件中加入main方法来进行调试。那么有时候会因为包兼容的问题引发以下错误,导致调试失败。

解决办法:
首先在main函数中输出兼容包的目录所在:
System.out.println(System.getProperty("java.endorsed.dirs"));
我的路径为:D:\jdk15\lib\endorsed
然后到这个目录的上层(这里为lib目录)建立endorsed文件夹,拷贝文件jaxb-api.jar和jaxws-api.jar到endorsed文件夹。

热点排行