spring-data-neo4j findAll:Java堆空间

时间:2014-12-12 09:17:09

标签: neo4j spring-data-neo4j

我有大量用户,并使用spring-data-neo4j通过分页找到所有用户

  

Pageable pageable = new PageRequest(1,15);
  return userRepository.findAll(pageable);

我覆盖了findAll,如:

  

Page findAll(可分页可分页);

但它会导致异常, java.lang.OutOfMemoryError:Java堆空间

我知道原因必须是因为用户数量巨大,但我很困惑,为什么它失败了,我已经添加了可分页的参数。

0 个答案:

没有答案