Skip to content

Instantly share code, notes, and snippets.

View ilkerkocatepe's full-sized avatar
🏎️
in pursuit of new technologies

ilker ilkerkocatepe

🏎️
in pursuit of new technologies
View GitHub Profile
@ilkerkocatepe
ilkerkocatepe / pageAggregation.java
Last active June 20, 2024 08:19
Spring Boot - MongoDB - Page Aggregation
public <T> Page<T> pageAggregation(
final Pageable pageable,
final Criteria criteria,
final String collection,
final Class<T> clazz) {
long count;
if (criteria.getCriteriaObject().isEmpty()) {
count = Optional
.of(mongoTemplate.estimatedCount(clazz))
.orElse(0L);