私が使おうとしているのは:
<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">