Spring jpa Hibernate ManyToOne association loading EAGERLY even if FetchType.LAZY
I have a unidirectional ManyToOne relation which is declared as FetchType.lAZY , But when i query using Spring jpa repo (query dsl) findAll() , ManyToOne is eagerly loaded even if DTO layer does not access this param at all .spring.jpa.open-in-view = false. I am using Spring boot 3.(Hibernate)
Say I have Employee entity , which has say office Address as ManyToOne relation