From f330117b0852e9823700d550e0aa7b3d9d265254 Mon Sep 17 00:00:00 2001 From: Omar Shahbaz Date: Fri, 15 May 2026 15:19:07 +0500 Subject: [PATCH] added lazyloading --- src/main/java/com/mfsys/uco/model/CustomerProfile.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/com/mfsys/uco/model/CustomerProfile.java b/src/main/java/com/mfsys/uco/model/CustomerProfile.java index b623f15..b5fc449 100644 --- a/src/main/java/com/mfsys/uco/model/CustomerProfile.java +++ b/src/main/java/com/mfsys/uco/model/CustomerProfile.java @@ -57,6 +57,7 @@ public class CustomerProfile { @Lob @JsonIgnore + @Basic(fetch = FetchType.LAZY) @Column(name = "CMP_CUSTIMG", nullable = true, columnDefinition = "LONGTEXT") private String cmpCustImage;