2

私が使おうとしているのは:

<repositories base-package="com.site.cmt.repositories" repository-impl-postfix="">
    <repository id="variableRepository" />
</repositories>

しかし、私はこのエラーを受け取り続けます:

org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException:ServletContextリソース[/WEB-INF/dispatcher-servlet.xml]からのXMLドキュメントの71行目が無効です。ネストされた例外はorg.xml.sax.SAXParseExceptionです。lineNumber:71; columnNumber:94; cvc-complex-type.2.4.a:要素'repositories'で始まる無効なコンテンツが見つかりました。'{"http://www.springframework.org/schema/beans":import、 "http://www.springframework.org/schema/beans":alias、 "http://www.springframework.org / schema / beans ":bean、WC [## other:" http://www.springframework.org/schema/beans "]、" http://www.springframework.org/schema/beans ":beans} '期待されています。

私はすべてを正しくロードしていると思いました...

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:jee="http://www.springframework.org/schema/jee"
       xmlns:jpa="http://www.springframework.org/schema/data/jpa"
       xsi:schemaLocation="
       http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context-3.1.xsd
       http://www.springframework.org/schema/mvc
       http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
       http://www.springframework.org/schema/aop
       http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
       http://www.springframework.org/schema/tx
       http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
       http://www.springframework.org/schema/jee 
       http://www.springframework.org/schema/jee/spring-jee-3.1.xsd
       http://www.springframework.org/schema/data/jpa
       http://www.springframework.org/schema/data/jpa/spring-jpa-1.1.xsd">
4

1 に答える 1

7

repositoriesタグの名前空間が間違っています。次のように変更してください。

<repository:repositories base-package="com.site.cmt.repositories" repository-impl-postfix="">
    <repository:repository id="variableRepository" />
</repository:repositories>

または、xmlのデフォルトの名前空間をリポジトリに設定します。

xmlns="http://www.springframework.org/schema/data/repository"

更新:申し訳ありませんが、名前空間が間違っています。実際にはjpa、リポジトリに関連する正しい名前空間のプレフィックスとして使用しているhttp://www.springframework.org/schema/data/jpaため、基本的に次を使用する必要があります。

<jpa:repositories base-package="com.site.cmt.repositories" repository-impl-postfix="">
    <jpa:repository id="variableRepository" />
</jpa:repositories>

http://www.springframework.org/schema/data/jpaただし、代わりにリポジトリプレフィックスを名前空間に再割り当てする方がよい場合があります。これは通常の規則です。

于 2012-05-15T13:25:48.943 に答える