我刚刚下载了 XMLUnit ( https://github.com/xmlunit/xmlunit/releases ) 但无法让它工作。
当我尝试配置一些属性时,例如:
XMLUnit.setControlParser("org.apache.xerces.jaxp.DocumentBuilderFactoryImpl");
XMLUnit.setTestParser("org.apache.xerces.jaxp.DocumentBuilderFactoryImpl");
XMLUnit.setSAXParserFactory("org.apache.xerces.jaxp.SAXParserFactoryImpl");
XMLUnit.setTransformerFactory("org.apache.xalan.processor.TransformerFactoryImpl");
...引发以下异常:
java.lang.ClassNotFoundException: No ClassLoaders found for: org.custommonkey.xmlunit.XMLUnit
at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:212)
at org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryClassLoader.java:521)
其他人有同样的问题吗?