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 ->