@OneToOne associations with the FetchType.Lazy attribute.
Specifying FetchType.LAZY for the non-owning side of the @OneToOne association will not affect the loading.
The related entity will still be loaded as if the FetchType.EAGER is defined.
For more info see the
documentation.