Google News
logo
JPA - Interview Questions
What are the two types of fetch strategies in JPA do you know?
JPA describes two types of fetch strategies:
 
* LAZY : these fields will be loaded only during the first access to this field,
 
* EAGER : these fields will be loaded immediately.
Advertisement