From 1456d688e826d4209afb4add65c6e877f9271a7b Mon Sep 17 00:00:00 2001 From: Rinjae Date: Wed, 24 Sep 2025 13:38:47 +0900 Subject: [PATCH 1/3] =?UTF-8?q?=EB=B9=8C=EB=93=9C=20=EC=98=A4=EB=A5=98=20?= =?UTF-8?q?=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../eai/rms/onl/apim/approval/PortalApprovalManService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/eactive/eai/rms/onl/apim/approval/PortalApprovalManService.java b/src/main/java/com/eactive/eai/rms/onl/apim/approval/PortalApprovalManService.java index 8e458cd..ebee7ca 100644 --- a/src/main/java/com/eactive/eai/rms/onl/apim/approval/PortalApprovalManService.java +++ b/src/main/java/com/eactive/eai/rms/onl/apim/approval/PortalApprovalManService.java @@ -103,7 +103,7 @@ public class PortalApprovalManService extends BaseService { Optional optUser = portalUserRepository.findById(approval.getTargetId()); optUser.ifPresent(user -> { PortalUserUI userUI = isMasked ? - portalUserManService.selectDetail(user.getId()) : + portalUserManService.selectDetail(user.getId(), true) : portalUserManService.selectDetailUnmask(user.getId()); // IP 마스킹 상태만 재설정 From aee51fae13f652bbfdcf8ff2e5511ab925108d65 Mon Sep 17 00:00:00 2001 From: Rinjae Date: Wed, 24 Sep 2025 17:42:39 +0900 Subject: [PATCH 2/3] =?UTF-8?q?weblogic.xml=20=EC=98=A4=ED=83=80=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WebContent/WEB-INF/weblogic.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebContent/WEB-INF/weblogic.xml b/WebContent/WEB-INF/weblogic.xml index ed59465..4fb5123 100644 --- a/WebContent/WEB-INF/weblogic.xml +++ b/WebContent/WEB-INF/weblogic.xml @@ -13,7 +13,7 @@ - org.apach.ignite.* + org.apach.ignite.* org.slf4j.* ch.qos.logback.* From 95e50edb55bee250c4ed33cbb56496b6abfe7a2c Mon Sep 17 00:00:00 2001 From: Rinjae Date: Fri, 26 Sep 2025 21:18:25 +0900 Subject: [PATCH 3/3] =?UTF-8?q?kjb-safedb=20=EB=AA=A8=EB=93=88=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 1 + settings.gradle | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 8f1fafa..48c5e9f 100644 --- a/build.gradle +++ b/build.gradle @@ -76,6 +76,7 @@ dependencies { implementation project(':elink-online-common') implementation project(':elink-online-emsclient') implementation project(':elink-portal-common') + implementation project(':kjb-safedb') /* Custom Libs */ implementation fileTree(dir: 'libs', include: ['*.jar']) diff --git a/settings.gradle b/settings.gradle index c0e25bd..c36ddb9 100644 --- a/settings.gradle +++ b/settings.gradle @@ -12,4 +12,8 @@ project (':elink-online-core').projectDir = new File(settingsDir, "../eapim-onli project (':elink-online-transformer').projectDir = new File(settingsDir, "../eapim-online/elink-online-transformer") project (':elink-online-common').projectDir = new File(settingsDir, "../eapim-online/elink-online-common") project (':elink-online-emsclient').projectDir = new File(settingsDir, "../eapim-online/elink-online-emsclient") -project (':elink-portal-common').projectDir = new File(settingsDir, "../elink-portal-common") \ No newline at end of file +project (':elink-portal-common').projectDir = new File(settingsDir, "../elink-portal-common") + + +include 'kjb-safedb' +project (':kjb-safedb').projectDir = new File(settingsDir, "../kjb-safedb") \ No newline at end of file