Hi Can anyone tell what is the difference between eager loading and lazy loading?
This is a discussion on Diff b/w Eager loading and Lazy Loading within the Java forums, part of the Software Development category; Hi Can anyone tell what is the difference between eager loading and lazy loading?...
Hi Can anyone tell what is the difference between eager loading and lazy loading?
Hi All,
I mean, Hibernate loads the data in 2 ways.
One is Eager loading and lazy loading. Im asking for the difference between two.
For hibernate,
lazy loading means that any foreign key references that you have in you table will be loaded only when referred to by the application.
Eager loading means everything will be loaded at once.
Regards,
Sahil.