`
peterwanghao
  • 浏览: 124095 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Apache Shiro 认证失败处理

 
阅读更多

Shiro通过异常类来描述认证失败的原因,比如:

AuthenticationToken token = new UsernamePasswordToken(loginName,loginPwd);

Subject currentUser = SecurityUtils.getSubject();

try {

currentUser.login(token);

} catch (UnknownAccountException uae) {

log.info("username wasn't in the system.");

} catch (IncorrectCredentialsException ice) {

log.info("password didn't match.");

} catch (LockedAccountException lae) {

log.info(account for that username is locked - can't login.");

} catch (AuthenticationException ae) {

log.info("unexpected condition.");

}

Shiro自带的认证异常类类图如下:


所有的异常类都是继承AuthenticationExceptions。如果现有的异常类不符合您的要求,可以自定义AuthenticationExceptions来代表具体的异常情况。




分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics