Topic: spring 执行报xml验证错误 |
Print this page |
1.spring 执行报xml验证错误 | Copy to clipboard |
Posted by: tesge Posted on: 2004-12-08 20:11 下面是我的bean.xml,可是一运行就包错: rg.springframework.beans.factory.BeanDefinitionStoreException: Line 1 in XML document from class path resource [bean.xml] is invalid; nested exception is org.xml.sax.SAXParseException: 缺少文件根组件。 org.xml.sax.SAXParseException: 缺少文件根组件。 bean.xml <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> <beans> <description>Spring Quick Start</description> <!-- datasource --> <bean id="helloBean" class="com.test.spring.HelloBean"> <property name="helloWord"> <value>tesge</value> </property> </bean> </beans> 以下是我在java中调用的语句: Resource resource = new ClassPathResource("bean.xml"); BeanFactory factory = new XmlBeanFactory(resource); HelloBean hello = (HelloBean) factory.getBean("helloBean"); |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |