Commit 848c7084 by 吴迪

【新增】

parent 1ae53ac4
...@@ -72,12 +72,13 @@ public class OAuth2Realm extends AuthorizingRealm { ...@@ -72,12 +72,13 @@ public class OAuth2Realm extends AuthorizingRealm {
} else { } else {
user = shiroService.queryUser(tokenEntity.getUserId()); user = shiroService.queryUser(tokenEntity.getUserId());
//账号锁定
if(user.getStatus() == 0){
throw new LockedAccountException("账号已被锁定,请联系管理员");
}
} }
//账号锁定
if(user.getStatus() == 0){
throw new LockedAccountException("账号已被锁定,请联系管理员");
}
SimpleAuthenticationInfo info = new SimpleAuthenticationInfo(user, accessToken, getName()); SimpleAuthenticationInfo info = new SimpleAuthenticationInfo(user, accessToken, getName());
return info; return info;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment