property 기본값 변경

This commit is contained in:
Rinjae
2025-12-11 18:04:47 +09:00
parent a754726e78
commit 1475657847
2 changed files with 12 additions and 7 deletions
@@ -54,7 +54,12 @@ public class KjbUmsService {
isRealMode = property.getUmsHostUrl() != null && StringUtils.isNotEmpty(property.getUmsHostUrl().trim());
if (isRealMode) {
ValidationUtil.validateOrThrow(property);
try {
ValidationUtil.validateOrThrow(property);
} catch (Exception e) {
log.error("[KJB-UMS] 파라미터 설정 오류", e);
throw e;
}
httpClient = HttpClients.createDefault();
requestConfig = RequestConfig.custom()