+ 9
Qus:- What is lazy loading in hibernate?
2 odpowiedzi
+ 4
Lazy fetching decides whether to loadchild objects while loading the Parent Object. You need to do this setting respective hibernate mapping file of the parent class. Lazy = true (means not to load child) By default the lazy loading of the child objects is true.Feb 3, 2010