0

STS で Spring Data JPA を構成しているときに、次の問題が発生します。

Referenced file contains errors (jar:file:/.../war/WEB-INF/lib/spring-
 context-3.0.RELEASE.jar!/org/springframework/context/config/spring-context-3.0.xsd). 
- Referenced file contains errors (jar:file:/.../war/WEB-INF/lib/spring-
 beans-3.0.RELEASE.jar!/org/springframework/beans/factory/xml/spring-beans-3.0.xsd). 
- Referenced file contains errors (jar:file:/.../war/WEB-INF/lib/spring-
 beans-3.0.RELEASE.jar!/org/springframework/beans/factory/xml/spring-tool-3.0.xsd)

applicationContext.xml ファイルのこの場所でこのエラーが発生しています。

 <?xml version="1.0" encoding="UTF-8"?>

削除するとエラーが消えます

http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.0.xsd

から

<beans ...> 

<jpa:repositories ... /> 

XML からのタグ。

4

1 に答える 1

0

ダイアログを見てみよう

Window > Preferences > XML > XML CataLog

1.[ウィンドウ] > [設定] をクリックし、[XML] > [XML カタログ] を選択します。

2. [追加] をクリックして、新しいカタログ エントリを作成します。

Details:
Location:   D:\...\spring-framework-3.0.5.RELEASE\projects\org.springframework.beans\src\main\resources\org\springframework\beans\factory\xml\spring-beans-3.0.xsd
Key type:   Schema location
Key:        http://www.springframework.org/schema/beans/spring-beans-3.0.xsd

xml ファイルの最初の行にエラーがある他の .xsd ファイルを構成する必要があります。

3.XML 構成は次のとおりです。

<beans xmlns="http://www.springframework.org/schema/beans"
    ...
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
    http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    ...
    ..."
>

4.<bean: ...>自動提案による編集およびその他の要素。

于 2013-06-19T03:49:09.980 に答える