0

こんにちは、スプリング データ neo4j のサンプル コードを 1 つダウンロードしました。以下のエラーに直面しています。誰かがこれを手伝ってくれますか。

コードスニペット:

public interface PersonRepository extends GraphRepository<Person> {
    Person findByName(String name);
    Iterable<Person> findByTeammatesName(String name);
}

アプリケーション.java

PersonRepository personRepository = ctx.getBean(PersonRepository.class);
GraphDatabase graphDatabase = ctx.getBean(GraphDatabase.class);

Transaction tx = graphDatabase.beginTx();
try {
    personRepository.save(greg);
    personRepository.save(roy);
    personRepository.save(craig);

    greg = personRepository.findByName("Greg");

    //......

    for (String name: new String[]{greg.name, roy.name, craig.name}) {
            System.out.println(personRepository.findByName(name));

エラー :

The return types are incompatible for the inherited methods PagingAndSortingRepository<Person,Long>.findAll(Sort), CRUDRepository<Person>.findAll(Sort) PersonRepository.java   /SpringDataForNeo4j/src line 5  Java Problem
The return types are incompatible for the inherited methods Repository<Person,Long>.count(), CRUDRepository<Person>.count() PersonRepository.java   /SpringDataForNeo4j/src line 5  Java Problem
The return types are incompatible for the inherited methods Repository<Person,Long>.findAll(), CRUDRepository<Person>.findAll() PersonRepository.java   /SpringDataForNeo4j/src line 5  Java Problem

誰かがこれを解決するのを手伝ってくれませんか。

4

1 に答える 1