cas5.2.6单点登录-自定义错误信息提示

步骤:

  • 1.创建 一个异常类继承javax.security.auth.login.AccountException 
  • 2.配置异常到application.properties中 
  • 3.在messages_zh_CN.properties 配置文件中,配置异常弹出的消息 

cas5.2.6单点登录-自定义错误信息提示_第1张图片

如果不知道需要继承那个异常类可以在messages.properties中查找一下。

自定义异常:

/**
 * @Project casspringboot
 * @Package com.cas.authentication
 * @ClassName AccountCodeException
 * @Descripition TODO
 * @Author able
 * @Date 2019/6/13 18:24
 * @Version 1.0
 **/
public class AccountRoleException extends javax.security.auth.login.AccountException {

    private static final long serialVersionUID = 1L;

    public AccountRoleException() {
        super();
    }

    public AccountRoleException(String arg0) {
        super(arg0);
    }
}

 2.application.properties

#自定义错误信息
cas.authn.exceptions.exceptions=com.cas.authentication.AccountRoleException

3.messages_zh_CN.properties

authenticationFailure.AccountRoleException=\u6743\u9650\u4e0d\u8db3

4.页面添加:

 cas5.2.6单点登录-自定义错误信息提示_第2张图片

 

你可能感兴趣的:(单点登陆,单点登陆)