0

我使用 Spring 3 和 Hibernate 开发了一个应用程序。为了测试我的 DAO,我使用 Junit,当我运行测试时,我得到了一个异常。

这是我的应用程序 context.xml 的一部分:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
    <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
    <property name="url" value="jdbc:mysql://localhost/register"/>
    <property name="username" value="root"/>
</bean>


<bean id="sessionFactory" 
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
    <property name="dataSource" ref="dataSource"/>
    <property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration"/> 

    <property name="annotatedClasses">
        <list>
            <value>com.model.Register</value>
        </list>
    </property>


    <property name="hibernateProperties">
        <props>
            <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
            <prop key="hbm2ddl.auto">update</prop>
            <prop key="hibernate.show_sql">true</prop>
        </props>
    </property>
</bean>

当我运行测试时,出现以下异常:

org.springframework.beans.factory.BeanDefinitionStoreException:来自类路径资源 [application-context.xml] 的 XML 文档中的第 10 行无效;嵌套异常是 org.xml.sax.SAXParseException: L'élément racine de document "beans" doit compatiblere à la racine DOCTYPE "null"。org.xml.sax.SAXParseException;行号:10;列号:105;L'élément racine de document "beans" doit compatiblere à la racine DOCTYPE "null"。在 com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException(未知来源)

4

2 回答 2

2

xsi:schemalocation 的 Spring bean 是错误的。将 xsi:schemalocation 的第一行更改为

xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd

你错过了 -3.0.xsd

于 2012-12-03T13:03:37.067 回答
0

</beans>在上下文文件的末尾添加

于 2012-10-28T14:51:46.347 回答