InterviewSolution
Saved Bookmarks
| 1. |
What Is Lazy Loading In Hibernate? |
|
Answer» Lazy loading in hibernate IMPROVES the performance. It LOADS the child objects on demand. Since Hibernate 3, lazy loading is enabled by DEFAULT, you don't NEED to do lazy="true". It means not to LOAD the child objects when parent is loaded. Lazy loading in hibernate improves the performance. It loads the child objects on demand. Since Hibernate 3, lazy loading is enabled by default, you don't need to do lazy="true". It means not to load the child objects when parent is loaded. |
|