관리 메뉴

HeBhy, since 1983.

JPA entity mapping (@OneToOne Lazy Loading) 본문

Dev/Web

JPA entity mapping (@OneToOne Lazy Loading)

HeBhy 2018. 10. 11. 22:06

JPA entity에서 글이나 회원에 대한 세부정보(분리된 table)를 Lazy Loading(지연로딩) 하고 싶은데 @OneToOne 관계에선 @SecondaryTable 등을 해도 잘 먹히지 않는다..(방법이 있어도 지저분해진다)


간단하게 해결하기 위해서 @OneToMany (parent) / @ManyToOne (child) 관계로 한다음 List 등 배열의 0번 인덱스만 사용하면된다.. 끝.


Comments