五分钟带你玩转SpringSecurity(十)全网最佳方案,解决无跳转地址报错问题

简介: 五分钟带你玩转SpringSecurity(十)全网最佳方案,解决无跳转地址报错问题


前文说当http://192.168.19.277:6001/authentication/loginPage路径登录后没有成功后的转跳地址 所以会报错 以下代码可以解决

解决方案

在登录成功后 前文我们配置CustomAuthenticationSuccessHandler  返回json 这个类调用了onAuthenticationSuccess 那就重写onAuthenticationSuccess方法

@Component("customAuthenticationSuccessHandler")
public class CustomAuthenticationSuccessHandler extends CustomSavedRequestAwareAuthenticationSuccessHandler {
    @Autowired
    Utils utils;
    @Override
    public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response,
        Authentication authentication) throws IOException, ServletException {
        SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        SysUser sysUser = (SysUser)authentication.getPrincipal();
        logger.info("|" + "用户" + sysUser.getUsername() + "于" + sd.format(new Date()) + "通过web端登录系统,ip为"
            + utils.getIpAddr() + "。" + "|" + sd.format(new Date()) + "|" + sysUser.getUsername());
        super.onAuthenticationSuccess(request, response, authentication);
    }
}

重写onAuthenticationSuccess  大致意思就是 在登录成功后获取转跳地址 如果没有 我们指定给他一个固定地址 这里我们指定了百度

public class CustomSavedRequestAwareAuthenticationSuccessHandler extends SimpleUrlAuthenticationSuccessHandler {
    protected final Log logger = LogFactory.getLog(this.getClass());
    private RequestCache requestCache = new HttpSessionRequestCache();
    public CustomSavedRequestAwareAuthenticationSuccessHandler() {}
    @Override
    public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response,
        Authentication authentication) throws ServletException, IOException {
        // 获取code码路径 现在有两种判断
        // 1.如果查询缓存有 定向到缓存 也就是数据库配置
        // 2.如果前台已经登录 但是退回导致session丢失 跳转可道云页面
        String targetUrl;
        // 获取缓存
        SavedRequest savedRequest = this.requestCache.getRequest(request, response);
        if (savedRequest == null) {
            // 跳转可道云
            targetUrl = "https://www.baidu.com";
        } else {
            // 跳转缓存
            targetUrl = savedRequest.getRedirectUrl();
        }
        String targetUrlParameter = this.getTargetUrlParameter();
        if (!this.isAlwaysUseDefaultTargetUrl()
            && (targetUrlParameter == null || !StringUtils.hasText(request.getParameter(targetUrlParameter)))) {
            this.clearAuthenticationAttributes(request);
            this.logger.debug("Redirecting to DefaultSavedRequest Url: " + targetUrl);
            this.getRedirectStrategy().sendRedirect(request, response, targetUrl);
        } else {
            this.requestCache.removeRequest(request, response);
            super.onAuthenticationSuccess(request, response, authentication);
        }
    }
    public void setRequestCache(RequestCache requestCache) {
        this.requestCache = requestCache;
    }
}


相关文章
【图文】怎么配二级域名?怎么做URL重定向?
1、登录阿里云,进入控制台2、在左侧菜单找到域名》进入域名列表3、点击对应域名右侧的管理,进入单域名管理控制台4、选择域名解析5、点击右侧的添加记录6、这里就是关键了A记录就可以创建一个标准的二级域名;显性URL或隐性URL,就可以将一个域名、二级域名指向一个URL地址。
6360 0
|
4月前
|
数据挖掘
Emlog程序屏蔽用户IP拉黑名单插件
Emlog程序屏蔽用户IP拉黑名单插件
44 9
Emlog程序屏蔽用户IP拉黑名单插件
|
6月前
自动测域名延迟的导航页面源码
好看导航页面可自动测域名延迟,该源码是html源码,可以做个引导页面,需要的朋友可以下载使用
47 0
|
安全 Java 数据库
SpringSecurity-4-认证流程源码解析
SpringSecurity-4-认证流程源码解析
86 0
|
安全 前端开发 数据安全/隐私保护
登录的功能的实现和登录功能的拦截信息(课时十六)
登录的功能的实现和登录功能的拦截信息(课时十六)
74 0
|
前端开发 Java Spring
百度搜索:蓝易云【SpringBoot解决跨域的方法详细教程。】
通过以上步骤,你可以在Spring Boot中配置跨域支持。根据实际需求,可以灵活调整跨域规则来满足项目的具体需求。
58 0
|
域名解析 缓存 网络协议
计算机网络面试专题:URL地址栏中输入网址到页面展示的全过程&&DNS域名解析的过程
计算机网络面试专题:URL地址栏中输入网址到页面展示的全过程&&DNS域名解析的过程
149 1
|
前端开发 Java 数据安全/隐私保护
基于拦截器实现线上演示站点只能查看不可操作得要求
基于拦截器实现线上演示站点只能查看不可操作得要求
101 0