Hibernate / Hibernate interview questions II
What is a lazy association in hibernate?
Consider a Parent table associated with a Child table. When we load the Parent table, In lazy association, the Child relationship is loaded when it is needed. This is the default configuration in Hibernate.
More Related questions...