无法从类路径读取 CouchDb 模式

Failed to read CouchDb schema from classpath

我正在使用本指南通过 Spring-boot: link 配置 CouchDb。这个XML配置文件

时出现问题
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:couchdb="http://www.ektorp.org/schema/couchdb"
xsi:schemaLocation="
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.ektorp.org/schema/couchdb http://www.ektorp.org/schema/couchdb/couchdb.xsd
">

 <couchdb:database name="myDatabase" url="http://localhost:5984"/> 


</beans>

无法验证,因为无法读取 ektorp xml 架构。当我通过浏览器 link 检查它的模式时,没有,但在 maven 依赖项中肯定有一个。但是当我切换这条线时

http://www.ektorp.org/schema/couchdb/couchdb.xsd

进入

classpath:couchdb.xsd

它也不会被读取,即使它位于名称 couchdb.xsd 下的 Maven 依赖项之一中。 (您可以在 github 上检查该文件)。

如何强制 XML reader 查看 Maven 依赖项以找到合适的模式文件?

由于 Eclipse 的错误,这个问题和其他问题一样令人讨厌。我刚刚删除了配置文件并重新创建了它,但是 没有验证 xml 模式,一切正常。

P.S。问题中的配置是正确的,不需要从本地 Maven 存储库(即从类路径)中提取 xml 模式。