what is lazy fetching in hibernate
Answer / Devnath Kumar
Lazy Fetching in Hibernate is a technique used to load an association or collection only when it is actually needed, rather than loading it with the initial query. This can improve performance by reducing the amount of data fetched initially and reducing the number of queries executed. Lazy fetching uses proxy objects to represent the associated entity until it's accessed.
| Is This Answer Correct ? | 0 Yes | 0 No |
How is it possible to get the total number of arguments that are passed to a function?
What are the predefined functions in javascript?
What is the difference between Local Storage and Session Storage?
What is a closure in javascript?
What is the importance of javascript?
Can you assign an anonymous function to a variable and pass it as an argument to another function?
What is missing in my code? function numberTally(numList) { var evenTotal = 0; var oddTotal = 0; for (var i = 0; i <= numList.length; i++) { if i % 2 { // i is odd oddTotal += numList[i]; // or oddTotal = oddTotal + numList[i]; } else { // i is even evenTotal + numList[i]; } } alert(oddTotal); return evenTotal; }
What is a name function in javascript?
why can't we call a static method from a non-static method
What is a function callback?
What is the use of blur function?
How to associate functions with objects using javascript?