Replies: 1 comment
-
JPA는 엔티티 객체를 직접 생성하지 않고, 프록시 객체를 사용하여 생성하는 경우가 많습니다. 프록시는 지연 로딩(lazy loading)을 구현하기 위해 사용되며, 데이터베이스에서 필요한 시점까지 실제 객체의 로딩을 미룹니다. 프록시 객체를 생성하려면 JPA의 구현체인 Hibernate는 기본 생성자를 호출해야 하므로, 기본 생성자가 필요합니다. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
.
Beta Was this translation helpful? Give feedback.
All reactions