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 回答