From fa62357bd3afad26c11b3729379fb315c288c905 Mon Sep 17 00:00:00 2001 From: Rinjae Date: Tue, 30 Sep 2025 15:44:14 +0900 Subject: [PATCH] =?UTF-8?q?=EC=8A=B9=EC=9D=B8=20=EC=9A=94=EC=B2=AD=20?= =?UTF-8?q?=EA=B4=80=EB=A6=AC=20NPE=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WebContent/WEB-INF/applicationContext-jpa.xml | 5 ++--- .../eai/rms/onl/apim/approval/PortalApprovalManService.java | 4 ++++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/WebContent/WEB-INF/applicationContext-jpa.xml b/WebContent/WEB-INF/applicationContext-jpa.xml index 74bc75b..cd7fa7d 100644 --- a/WebContent/WEB-INF/applicationContext-jpa.xml +++ b/WebContent/WEB-INF/applicationContext-jpa.xml @@ -92,10 +92,9 @@ none true - true + false trace - ${hibernate.dialect:org.hibernate.dialect.Oracle12cDialect} - + ${hibernate.dialect:org.hibernate.dialect.Oracle12cDialect} 100 100 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 ebee7ca..4545ea5 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 @@ -142,6 +142,10 @@ public class PortalApprovalManService extends BaseService { AppRequest appRequest = optRequest.get(); appApprovalUI.setRequestType(appRequest.getType()); + // null 처리 필요 + if (appRequest.getApiGroupList() == null || appRequest.getApiGroupList().isEmpty()) { + appRequest.setApiGroupList(""); + } String[] apiGroupList = appRequest.getApiGroupList().split(","); for (String apiGroupId : apiGroupList) { apiGroupService.findByIdWithApiList(apiGroupId).ifPresent(apiGroup ->