Dot Programming/JPA
2022. 4. 1.
[JPA] Fetch 전략 공부하기 - @OneToOne 양방향 매핑에서 Lazy가 동작하지 않는 이유
Fetch 전략 기존 Hibernate의 Fetch 전략은 모두 Lazy였는데, Hibernate 5.x 버전부터 JPA와 똑같이 전략이 변경되었다. Hibernate User Guide의 일부를 보면 다음과 같다. The Hibernate recommendation is to statically mark all associations lazy and to use dynamic fetching strategies for eagerness. This is unfortunately at odds with the JPA specification which defines that all one-to-one and many-to-one associations should be eagerly fetched by d..