InterviewSolution
Saved Bookmarks
| 1. |
Can you explain what is lazy loading in hibernate? |
|
Answer» Lazy LOADING is mainly used for IMPROVING the application performance by HELPING to load the child objects on demand. It is to be noted that, since Hibernate 3 version, this feature has been ENABLED by default. This signifies that child objects are not loaded until the parent gets loaded. |
|