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 respondre à la racine DOCTYPE "null" です。org.xml.sax.SAXParseException; 行番号: 10; 列番号: 105; L'élément racine de document "beans" は、racine DOCTYPE "null" に対応しています。com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException (不明なソース) で

4

2 に答える 2

2

Spring Bean の xsi:schemalocation が間違っています。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 に答える