找不到org.apache.xerces.jaxp.DocumentBuilderFactoryImpl的处理方法
最近打算复习下SPRING,顺便写个例子,结果在跑程序的时候,出现了“org.apache.xerces.jaxp.DocumentBuilderFactoryImpl not found”的报错信息,程序没有从SPRING配置文件里面读取到相应的注入BEAN,程序样例为:
Resource res = new ClassPathResource("SPRING配置文件路径"); BeanFactory factory = new XmlBeanFactory(res); System.setProperty("javax.xml.parsers.DocumentBuilderFactory","com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl");System.setProperty("javax.xml.parsers.DocumentBuilderFactory","com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl"); Resource res = new ClassPathResource("SPRING配置文件路径"); BeanFactory factory = new XmlBeanFactory(res);