Loading...

Questions tagged [hibernate]

Hibernate is an object-relational mapping tool for Java.

2 questions with this tag
18
votes
1
answers
Spring Data JPA Repository returns null instead of empty list

I have a JPA Repository method that should return a List, but it returns null instead of an empty list when no results are found. ```java public inte...

asked by jpa_wizard 2 days ago
56
votes
3
answers
LazyInitializationException in Spring Boot JPA - How to fix?

I'm getting this error when trying to access a collection after fetching an entity: ``` org.hibernate.LazyInitializationException: failed to lazily i...

asked by jpa_wizard 6 days ago