Quantcast
Channel: Vlad Mihalcea
Viewing all articles
Browse latest Browse all 176

Spring Data JPA MultipleBagFetchException

$
0
0

Introduction In this article, I’m going to show you how to handle the MultipleBagFetchException thrown by Hibernate upon simultaneously fetching multiple collections with Spring Data JPA. MultipleBagFetchException As I explained previously in this article, the MultipleBagFetchException is thrown by Hibernate when you try to fetch multiple List collections at once. By trying to fetch multiple one-to-many or many-to-many associations at once, a Cartesian Product is generated, and, even if Hibernate didn’t throw the MultipleBagFetchException, we would still want to avoid getting a Cartesian Product in our query result set. Domain Model Let’s... Read More

The post Spring Data JPA MultipleBagFetchException appeared first on Vlad Mihalcea.


Viewing all articles
Browse latest Browse all 176

Trending Articles