我想在此前加上这个问题,这个问题是由于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方法的类型?