2

私はこれをspring-data-jpaで使用します:

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx" 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.2.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
    http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd
    http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
    http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa.xsd"
default-lazy-init="true">

<jpa:repositories base-package="org.kb" repository-impl-postfix="Impl">
<jpa:repository id="articleDao" repository-impl-ref="articleDaoPlus" /> 
</jpa:repositories>

しかし、私は例外を得ました:

ネストされた例外はorg.xml.sax.SAXParseExceptionです:cvc-complex-type.2.4.a:要素'jpa:repository'で始まる無効なコンテンツが見つかりました。'{"http://www.springframework.org/schema/data/repository":include-filter、"http://www.springframework.org/schema/data/repository":exclude-filter}'の1つは期待される。

4

1 に答える 1

4

要するに、に置き換えるhttp://www.springframework.org/schema/data/jpa/spring-jpa.xsdhttp://www.springframework.org/schema/data/jpa/spring-jpa-1.1.xsd問題は解決します。しかし、あなたがそれをしたいかどうかはわかりません。

理由?<jpa:repository id="articleDao" repository-impl-ref="articleDaoPlus" />新しいspring-data-jpaバージョンではタグが削除されています。

2つのxsdsの違いを見てください http://www.springframework.org/schema/data/jpa/spring-jpa.xsdhttp://www.springframework.org/schema/data/jpa/spring-jpa-1.1.xsd

于 2013-01-02T11:14:31.443 に答える