java.lang.LinkageError: loader constraint violation in interface itable initialization: when resolving method

前端 未结 1 583
情歌与酒
情歌与酒 2021-01-20 17:18

I have developed a web service with authentication in java following the link Web Service Atuthentication The Same is runing fine if I am using JDK 1.6/JBoss 4.2 but when I

1条回答
  •  一向
    一向 (楼主)
    2021-01-20 18:02

    The exception is thrown because in your web application at least exists a jar which contains the javax.xml.namespace.QName class and that class conflicts with the same one contained in one of the JBoss's jar.

    You should remove that (these) jar(s) from your web application when deploying on JBoss.

    A list of jars which contain the javax.xml.namespace.QName class is at http://www.findjar.com/class/javax/xml/namespace/QName.html

    0 讨论(0)
提交回复
热议问题