Hibernate can use two types of fetch when you are mapping the relationship between two entities: EAGER and LAZY.
In general, the EAGER fetch type is not a good idea, because it tells JPA to always fetch the data, even when this data is not necessary.
Per example, if you have a Person entity and th...