Hibernate / Hibernate interview questions
Difference between fetch mode and fetch type in Hibernate.
FetchType (Lazy/Eager) instructs whether the entity to be loaded eagerly or lazy, when there is a call.
FetchMode (Select/Join) instructs whether the entitity to be loaded with additional select or in one query with join or subselect.
More Related questions...