sso update

This commit is contained in:
Rinjae
2025-11-27 17:59:09 +09:00
parent 154852d4b1
commit 4f7d76a7b0
@@ -51,11 +51,15 @@ public class SsoController implements InterceptorSkipController {
String retCode = ssoModule.getEamSessionCheck(req, res);
log.debug("retCode : {}", retCode);
if (!"0".equalsIgnoreCase(retCode)) {
if (!prop.isSsoIgnoreValidation() && !"0".equalsIgnoreCase(retCode)) {
ssoModule.goErrorPage(res, Integer.parseInt(retCode));
return null;
}
if (StringUtils.isEmpty(ssoId)) {
throw new IllegalStateException("KJB-SSO - ssoId 획득 실패");
}
// 기본 정보
Properties info = ssoModule.getUserInfos(ssoId);