From 1f055c22835bf9b25c5344fc73ed5360960af913 Mon Sep 17 00:00:00 2001 From: Klaus Date: Tue, 24 Oct 2023 19:18:49 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=201:1=20=EA=B4=80?= =?UTF-8?q?=EA=B3=84=20-=20FetchType=20EAGER=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../kotlin/kr/co/vividnext/sodalive/content/AudioContent.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContent.kt b/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContent.kt index a1f5c15..842036f 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContent.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/content/AudioContent.kt @@ -51,7 +51,7 @@ data class AudioContent( @JoinColumn(name = "curation_id", nullable = true) var curation: AudioContentCuration? = null - @OneToOne(fetch = FetchType.LAZY) + @OneToOne(fetch = FetchType.EAGER) @JoinColumn(name = "member_id", nullable = false) var member: Member? = null