SSO retcode 관련 에러 메세지 변경

This commit is contained in:
Rinjae
2026-01-16 14:36:30 +09:00
parent 483ef16e81
commit ac61e9861a
@@ -97,7 +97,8 @@ public class SsoController implements InterceptorSkipController {
log.debug("Property - sso.ignore_validation = {}", getProperty().isSsoIgnoreValidation());
if (!getProperty().isSsoIgnoreValidation() && !"0".equalsIgnoreCase(retCode)) {
// SSO 검증 실패 시 에러 메시지 설정 및 로그인 페이지로 이동
session.setAttribute("resultMsg", "SSO 로그인을 실패 하였습니다. 다른 로그인 방식을 시도 하세요");
log.warn("SSO 검증 실패 - retCode: {}, ssoId: {}", retCode, ssoId);
session.setAttribute("resultMsg", "SSO 로그인을 실패 하였습니다. (오류코드: " + retCode + ") 다른 로그인 방식을 시도 하세요");
return "redirect:/loginForm.do";
}