4

私のスプリングコンテキストファイルを以下に示します。

<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:jee="http://www.springframework.org/schema/jee"
    xmlns:jms="http://www.springframework.org/schema/jms"
    xmlns:lang="http://www.springframework.org/schema/lang"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:util="http://www.springframework.org/schema/util"
    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.xsd
        http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee.xsd
        http://www.springframework.org/schema/jms http://www.springframework.org/schema/jms/spring-jms.xsd
        http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
        http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">

    <bean id="cfaBeanFactory" class="org.springframework.context.support.ClassPathXmlApplicationContext">
        <constructor-arg value="classpath:cfa-spring-core.xml" />
    </bean>
</beans>

アプリケーションを実行しようとすると、次のエラーが表示されます。

Caused by: org.springframework.beans.factory.access.BootstrapException: Unable to initialize group definition. Group resource name [classpath*:cfa-spring-context.xml], factory key [cfaBeanFactory]; nested exception is org.springframework.beans.factory.BeanDefinitionStoreException: Line 16 in XML document from URL [file:/C:/.../cfa-spring-context.xml] is invalid; nested exception is org.xml.sax.SAXParseException: Document root element "beans", must match DOCTYPE root "null".
    at org.springframework.beans.factory.access.SingletonBeanFactoryLocator.useBeanFactory(SingletonBeanFactoryLocator.java:389)
    ... 56 more
Caused by: org.springframework.beans.factory.BeanDefinitionStoreException: Line 16 in XML document from URL [file:/C:/.../cfa-spring-context.xml] is invalid; nested exception is org.xml.sax.SAXParseException: Document root element "beans", must match DOCTYPE root "null".
    at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:169)
    ... 59 more
Caused by: org.xml.sax.SAXParseException: Document root element "beans", must match DOCTYPE root "null".
    at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)
    at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown Source)

誰かが私が間違っていることを教えてもらえますか?

4

5 に答える 5

5

これは、Spring1.xでHibernate3を使用しているためです。これは、DTDが間違っていることを意味します。プロジェクトのSpringJARファイルを更新し、問題を修正しました。

于 2008-11-05T21:09:10.240 に答える
1

古いバージョンの spring.jar を使用している可能性があります。これを入手し、最新のspring.jarを使用すると解決しました

于 2009-12-30T20:57:12.967 に答える
1

spring.jar を最新バージョンに更新する

于 2010-07-03T09:29:58.417 に答える
0

<beans>タグを閉じていません。</beans>構成ファイルの最後に追加します。

于 2008-11-05T20:54:08.180 に答える
0

スタックトレースを見る:

URL [file:/C:/.../cfa-spring-context.xml]    からの XML ドキュメントの 16 行目が無効です。
    ネストされた例外は org.xml.sax.SAXParseException: ドキュメント ルート要素「beans」です。
    DOCTYPE ルート「null」と一致する必要があります。

投稿に含めた spring ファイルではなく、cfa-spring-core.xmlファイルにエラーがあるようです。

于 2008-11-05T20:54:40.267 に答える