在Spring Data REST中禁用findAll()/ collection资源的行数

时间:2015-04-29 14:20:01

标签: spring spring-data spring-data-jpa spring-data-rest

我想在此前加上这个问题,这个问题是由于PostgresSQL及其known problem计数行所致。

只有数千万行,对public void saveParty(RegisterParty registerParty){ try { FileOutputStream fout = new FileOutputStream("/media/user/disk2/myapp/assignment/party.txt"); ObjectOutputStream oos = new ObjectOutputStream(fout); oos.writeObject(registerParty); oos.close(); System.out.println("Successfull Register"); System.out.println("========Select you choice========"); App.main(str); } catch (Exception ex){ ex.printStackTrace(); } } 的调用需要花费大量时间才能执行,因为需要额外调用来计算所有行。

鉴于此,有没有办法在Spring Data REST / JPA中禁用基本集合资源的计数调用,没有编写使用localhost:8080/myObject / {{1的自定义存储库实现} / List返回Pageable方法的类型?

0 个答案:

没有答案