sso update
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user