【发布时间】:2015-11-25 00:41:41
【问题描述】:
我正在尝试使用 Maven 在 Eclipse 中导入各种 Neo4j 注释
我有
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j</artifactId>
<version>4.0.0.RELEASE</version>
</dependency>
但我明白了:
The import org.springframework.data.neo4j.annotation.Fetch cannot be resolved
当我尝试导入 @Fetch、@RelatedTo 和 @GraphId 时。奇怪的是,eclipse 显示注解 @Query 和 @QueryResult 存在于 org.springframework.data.neo4j.annotation 中,但只有这两个注解没有其他注解。我能找到的所有文档都说注释应该在那里,但它看起来是不是。
【问题讨论】:
标签: java eclipse spring maven spring-data-neo4j