我正在尝试将现有项目转换为使用Spring Data和Neo4j,但我遇到了一些问题。当我尝试构建项目时,我得到以下异常:
[etc. ...]
Caused by:
org.springframework.data.mapping.PropertyReferenceException: No property get found for type com.myproject.models.SuperNode
at org.springframework.data.mapping.PropertyPath.<init>(PropertyPath.java:75)
[... etc.]
我似乎无法找到任何有关我为什么会收到该错误的良好信息,而且我不确定究竟是什么原因造成的。
以下是SuperNode类的大部分内容:
@NodeEntity
public class SuperNode extends AbstractMapValues {
@GraphId
private Long superNodeId;
@NotNull
private boolean superNodeFullyGenerated = false;
private BaseLandType likelyLandType;
private BaseLandType unlikelyLandType;
[methods and such]
}
它来自AbstractMapValues类:
@NodeEntity
public abstract class AbstractMapValues implements Comparable<AbstractMapValues> {
@GraphId
public Long id;
@Range(min = 0, max = MAX_MAP_INT)
private int xCoor;
@Range(min = 0, max = MAX_MAP_INT)
private int yCoor;
//set only when x and y are set
@Indexed(indexType = IndexType.POINT)
private String wkt;
@Range(min = BASIC_MIN, max = BASIC_MAX)
private int percipitation;
@Range(min = -1, max = BASIC_MAX)
private int topography;
@Range(min = BASIC_MIN, max = BASIC_MAX)
private int seaLevel;
[more int fields, but you get the picture]
}
如您所见,这些意味着代表地图中的点。我的项目中有一个Neo4j空间依赖项,应该允许我使用IndexType.POINT。
然后我有SuperNode的存储库。我有基本的CRUD类型存储库接口,它是一个由基本存储库实现的自定义接口,因此我可以实现自定义接口并写出需要使用Neo4j空间库的get方法
基本回购:
public interface SuperNodeRepo extends CRUDRepository<SuperNode>, SpatialRepository<SuperNode>, SuperNodeRepoCustom {
}
自定义界面:
@NoRepositoryBean
public interface SuperNodeRepoCustom {
public SuperNode getSuperNode(int xCoorSuperNode, int yCoorSuperNode) ;
public List<SuperNode> getSuperNodes(int xmax, int xmin, int ymax, int ymin) ;
}
自定义实施(如您所见,目前尚未完成):
公共类SuperNodeRepoCustomImpl实现了SuperNodeRepoCustom {
public SuperNode getSuperNode(int xCoorSuperNode, int yCoorSuperNode) {
return null;
}
public List<SuperNode> getSuperNodes(int xmax, int xmin, int ymax, int ymin) {
return null;
}
}
我尝试将@Indexed直接添加到SuperNode中的新字段,但这没有帮助。我试过它没有扩展spatialRepo。
当我在没有扩展自定义界面的情况下尝试它时,我得到一个不同的错误:
No matching bean of type [com.orclands.game.models.SuperNode] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {}
但我仍然不知道为什么会这样。所以最后,我有两个问题。答:我的自定义界面实现有什么问题,而B.除此之外还有什么问题!
非常感谢任何帮助!
答案 0 :(得分:0)
**@Repository**
public interface SuperNodeRepo extends CRUDRepository<SuperNode>, SpatialRepository<SuperNode>, SuperNodeRepoCustom {
}