来自Repository的Spring数据neo4j方法findAllByQuery无法传递分页参数

时间:2013-11-19 06:57:15

标签: pagination full-text-search spring-data-neo4j

我正在尝试使用spring数据neo4j存储库方法 findAllByQuery 来实现全文查询,但我无法传递分页参数。

来自[doc]:http://docs.spring.io/spring-data/neo4j/docs/current/reference/htmlsingle/#d0e2149

@NodeEntity
class Person {
    @Indexed(indexName = "people-search", type=FULLTEXT) String name;
}

GraphRepository<Person> graphRepository =
         template.repositoryFor(Person.class);

Person mark = graphRepository.findAllByQuery("people-search", "name", "ma*");

0 个答案:

没有答案