java.lang.LinkageError:接口itable初始化中的加载器约束违规:解析方法时

时间:2013-11-08 10:19:06

标签: java web-services

我使用链接Web Service Atuthentication开发了一个带有身份验证的Web服务 如果我使用的是JDK 1.6 / JBoss 4.2,那么运行正常,但是当我在Jboss 5.1.0 GA中部署它时,我遇到了部署错误。我google并发现JDK1.6,Jboss和我的应用程序之间存在一些jar冲突。并用最新的jaxws-ri-2.2.8.jar替换了JBoss / lib / endorsed jaxws-ri.jar。但我现在无法确定哪个罐子正在制造冲突。

下面是我的web.xml代码,sun-jaxws.xml和exception。

web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>biservices</display-name>
<listener>
<listener-class>
        com.sun.xml.ws.transport.http.servlet.WSServletContextListener
    </listener-class>
</listener>
<servlet>
<servlet-name>BiServices</servlet-name>
 <servlet-class>com.sun.xml.ws.transport.http.servlet.WSServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>BiServices</servlet-name>
<url-pattern>/biservices</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>120</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>


sun-jaxws.xml
<?xml version="1.0" encoding="UTF-8"?>
<endpoints xmlns="http://java.sun.com/xml/ns/jax-ws/ri/runtime" version="2.0">
<endpoint
   name="IBiUpdate"
   implementation="com.sbilife.ws.BiUpdate"
   url-pattern="/biservices"/>
</endpoints>

exception
java.lang.LinkageError: loader constraint violation in interface itable initialization: when resolving method "com.sun.xml.ws.util.xml.XMLStreamReaderFilter.getAttributeName(I)Ljavax/xml/namespace/QName;" the class loader (instance of org/jboss/classloader/spi/base/BaseClassLoader) of the current class, com/sun/xml/ws/util/xml/XMLStreamReaderFilter, and the class loader (instance of <bootloader>) for interface javax/xml/stream/XMLStreamReader have different Class objects for the type javax/xml/namespace/QName used in the signature

由于 PISE

1 个答案:

答案 0 :(得分:1)

抛出异常是因为在你的web应用程序中至少存在一个包含javax.xml.namespace.QName类的jar,并且该类与JBoss jar中包含的类冲突。

在JBoss上部署时,应该从Web应用程序中删除(这些)jar。

包含javax.xml.namespace.QName类的jar列表位于http://www.findjar.com/class/javax/xml/namespace/QName.html