Filter by tag JPA
Number of results: 1
-
JPA & Hibernate
11 commentsLazy loading problem Also beware of the n+1-problem. Hibernate will not actually load all children when you access the collection. Instead, it will load each child individually. When iterating over the collection, this causes a query for every child. In order to avoid …
Read More