sso update
This commit is contained in:
@@ -55,7 +55,19 @@ public class SsoController implements InterceptorSkipController {
|
|||||||
ssoModule.goErrorPage(res, Integer.parseInt(retCode));
|
ssoModule.goErrorPage(res, Integer.parseInt(retCode));
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// 기본 정보
|
||||||
|
Properties info = ssoModule.getUserInfos(ssoId);
|
||||||
|
if (info != null) {
|
||||||
|
info.keySet().forEach( k -> {
|
||||||
|
log.debug("{} : {}", k, info.get(k));
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
log.debug("User info is null");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 확장 정보
|
||||||
Properties extendedInfo = ssoModule.getUserExFields(ssoId);
|
Properties extendedInfo = ssoModule.getUserExFields(ssoId);
|
||||||
if (extendedInfo != null) {
|
if (extendedInfo != null) {
|
||||||
extendedInfo.keySet().forEach( k -> {
|
extendedInfo.keySet().forEach( k -> {
|
||||||
|
|||||||
Reference in New Issue
Block a user