現在、GWT、Maven、Neo4j、および Spring Data を使用してテスト プロジェクトをセットアップしようとしています。Eclipse で開発モードでプロジェクトを開始しようとすると、問題が発生しました。
私はいつもエラーが発生します
org.springframework.beans.factory.parsing.BeanDefinitionParsingException: 構成の問題: XML スキーマ名前空間の Spring NamespaceHandler が見つかりません [ http://www.springframework.org/schema/data/neo4j ]
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:neo4j="http://www.springframework.org/schema/data/neo4j"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/data/neo4j
http://www.springframework.org/schema/data/neo4j/spring-neo4j-2.0.xsd">
これは、エラーを発生させる application-context.xml の一部です。
pom.xml で使用します
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j</artifactId>
<version>2.1.0.BUILD-SNAPSHOT</version>
</dependency>
しかし、2.0.0.Release バージョンにも問題がありました。
ここで同じエラーを見つけましたhttp://neo4j.org/nabble/#nabble-td3428668 しかし、答えが提供されていないか、修正があるかどうか。
誰かが問題がどこにあるのか考えていますか?