From 0fa9899121f01f46949d2825d7affcb260b9e014 Mon Sep 17 00:00:00 2001 From: Naeem Ullah Date: Fri, 15 May 2026 11:14:34 +0500 Subject: [PATCH] remove lazyloading --- src/main/java/com/mfsys/uco/model/CustomerProfile.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/com/mfsys/uco/model/CustomerProfile.java b/src/main/java/com/mfsys/uco/model/CustomerProfile.java index 40ad0d1..b623f15 100644 --- a/src/main/java/com/mfsys/uco/model/CustomerProfile.java +++ b/src/main/java/com/mfsys/uco/model/CustomerProfile.java @@ -55,10 +55,9 @@ public class CustomerProfile { @Column(name = "CMP_ADDRESS", nullable = true, columnDefinition = FieldNameLength.DESCRIPTION_LONG) private String cmpAddress; - @Column(name = "CMP_CUSTIMG", nullable = true, columnDefinition = "LONGTEXT") @Lob @JsonIgnore - @Basic(fetch = FetchType.LAZY) + @Column(name = "CMP_CUSTIMG", nullable = true, columnDefinition = "LONGTEXT") private String cmpCustImage; }