Hibernate / Hibernate interview questions
What is the difference between FetchType.LAZY and FetchType.EAGER in Java Persistence API?
The EAGER strategy is a requirement on the persistence provider runtime that data must be eagerly fetched. The LAZY strategy is a hint to the persistence provider runtime that data should be fetched lazily when it is first accessed.
More Related questions...