SNShivansh Narayaninaveragesde.hashnode.dev·May 16, 2025 · 2 min readWhy @EntityGraph Breaks Pagination in Spring Data JPAThis is my second blog post — more of a mini blog, really — and I wanted to share a super frustrating issue I ran into recently with Spring Data JPA. I was using @EntityGraph to avoid the N+1 problem, and it worked great — until I added pagination. A...00
SNShivansh Narayaninaveragesde.hashnode.dev·Jun 18, 2023 · 8 min readJava Garbage Collection | Part-1One of the many things that make Java special is its automatic garbage collection. As an application developer using Java, this comes in very handy as you don't have to think about memory leaks (for the most part) For me, GC and JVM used to be like a...00