Hibernate / Hibernate interview questions
What is the default fetch mode in Hibernate?
If the Hibernate annotation @Fetch is not present on a field, then the default FetchMode for this field is decided based on the FetchType.
If the field has FetchType = EAGER, then FetchMode = JOIN. Otherwise, FetchMode = SELECT.
More Related questions...