Spring Data Neo4j 4 - findById(Long id)返回null

时间:2016-01-14 09:04:01

标签: spring fetch spring-data-neo4j-4

我正在使用SDN 4和neo4j-ogm 1.1.4

我正在尝试使用findById(Long id)GraphRepository获取我的数据,但始终返回null。之后,我试图使用findByName(字符串名称),它的工作。我知道有替代方法使用findOne(Long id,int depth),但是当我想进行自定义查询时,例如findByObjectId(Long id),就会出问题。

在neo4j上尝试手动查询后,它也返回null。那么关于这个问题呢?

@NodeEntity
public class Fetch1 {

    @GraphId Long id;

    private String name;

    @Relationship(type="HAS_FETCH2")
    @JsonIgnore
    private List<Fetch2> fetch2;

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    @Relationship(type="HAS_FETCH2")
    @JsonIgnore
    public List<Fetch2> getFetch2() {
        return fetch2;
    }

    @Relationship(type="HAS_FETCH2")
    @JsonIgnore
    public void setFetch2(List<Fetch2> fetch2) {
        this.fetch2 = fetch2;
    }

    @Override
    public String toString() {
        return "Fetch1 [id=" + id + ", name=" + name + ", fetch2=" + fetch2 + "]";
    }
}

@NodeEntity
public class Fetch2 {

    @GraphId Long id;

    private String name;

    @Relationship(type="HAS_FETCH2", direction=Relationship.INCOMING)
    @JsonIgnore
    private Fetch1 fetch1;

    @Relationship(type="HAS_FETCH3")
    @JsonIgnore
    private List<Fetch3> fetch3;

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    @Relationship(type="HAS_FETCH2", direction=Relationship.INCOMING)
    @JsonIgnore
    public Fetch1 getFetch1() {
        return fetch1;
    }

    @Relationship(type="HAS_FETCH2", direction=Relationship.INCOMING)
    @JsonIgnore
    public void setFetch1(Fetch1 fetch1) {
        this.fetch1 = fetch1;
    }

    @Relationship(type="HAS_FETCH3")
    @JsonIgnore
    public List<Fetch3> getFetch3() {
        return fetch3;
    }

    @Relationship(type="HAS_FETCH3")
    @JsonIgnore
    public void setFetch3(List<Fetch3> fetch3) {
        this.fetch3 = fetch3;
    }

    @Override
    public String toString() {
        return "Fetch2 [id=" + id + ", name=" + name + ", fetch1=" + fetch1 + ", fetch3=" + fetch3 + "]";
    }    
}

这是我的存储库

public interface Fetch1Repository extends GraphRepository<Fetch1>{

    Fetch1 findById(Long id);
    Fetch1 findByFetch2Id(Long id);
    Fetch1 findByFetch2Name(String name);
}

1 个答案:

答案 0 :(得分:4)

在这种情况下,findById不会按预期的方式工作,因为id不是图中的节点属性,findByXXX会查找属性。

在Cypher,区别在于:

MATCH (n) WHERE id(n) = .... // find by id

MATCH (n {n.name = "Steve Jobs" }) ... // find by property

只需使用findOne(id)或findOne(id,depth)。