0 votes
in Hibernate by
edited by
What is lazy loading in hibernate?

2 Answers

0 votes
by

Lazy loading in hibernate improves the performance. It loads the child objects on demand.

Since Hibernate 3, lazy loading is enabled by default, and you don't need to do lazy="true". It means not to load the child objects when the parent is loaded.

0 votes
by

Lazy loading in hibernate improves the performance. It loads the child objects on demand.

Since Hibernate 3, lazy loading is enabled by default, and you don't need to do lazy="true". It means not to load the child objects when the parent is loaded.

Related questions

0 votes
asked Jun 8, 2020 in Hibernate by DavidAnderson
0 votes
asked May 27, 2019 in Gradle by Ankita1283
...