Spring和XOM之间的冲突

时间:2013-08-25 19:00:08

标签: java spring xom

在我的Java程序中,我创建了一个使用XOM读取XML文件的类。我也在使用Spring。当行:  ApplicationContext ctx = new ClassPathXmlApplicationContext("dataIO-beans.xml");被执行,我得到一个例外,其中包括: javax.xml.parsers.ParserConfigurationException: Unable to validate using XSD: Your JAXP provider [org.apache.xerces.jaxp.DocumentBuilderFactoryImpl@4d48f152] does not support XML Schema. Are you running on Java 1.4 with Apache Crimson? Upgrade to Apache Xerces (or Java 1.5) for full XSD support. 如果我从Eclipse项目构建路径中删除dtd-xercesImpl.jar,Spring会从xml文件中成功读取bean,但现在我的XML读取类不起作用,因为XOM需要该jar文件。我怎么能纠正这个?

1 个答案:

答案 0 :(得分:0)

看起来我找到了解决方案。我从http://xerces.apache.org/mirrors.cgi下载了Xerces2二进制文件,并将这些JAR添加到构建路径而不是使用dtd-xercesImpl.jar,并且它有效。