java.lang.AbstractMethodError: org.apache.xerces.dom.DocumentImpl.setXmlVersion

网上有一个解答:

   The reason was in JVM version. Platforms where deployment was successful used JVM 1.5 but problematical one had JVM 1.6. SAX2DOM class from Java 1.6 has a call to DocumentImpl::setXmlVersion() from its setDocumentInfo(). The version of xerces library I used doesn't have this method - it's a real reason of exception. So after I downloaded the latest version of xerces everything works fine.

 

我我环境jdk 6.15 tomcat  6 .021  需要去掉xerces.jar

你可能感兴趣的:(java,apache,jvm,jdk,tomcat)