We use the JPA Spring data repository. For pagination, we pass the Pageable to the JPA Repository findBy search methods.
Since we do not show the total number of records in our user interface, we do not want the count request to be fired. Is there a way to suppress the counter request launched during pagination?
lives source share