(Spring Security)学习五:SuccessHandler成功登录及FailureHandler、LogoutSuccessHandler...等用法

本文详细介绍了如何使用SpringSecurity框架自定义认证成功、认证失败、注销成功和未认证处理的行为,包括实现AuthenticationSuccessHandler接口进行认证成功处理,并通过配置实现不同场景的响应。

引言

一般成功登录后,需要触发一些操作,比如我们经常收到你异地登录的消息等,都是登录成功后触发的事务。SpringSecurity框架涵盖这部分。

认证成功处理

OursAuthenticationSuccessHandler 实现 AuthenticationSuccessHandler接口,重写onAuthenticationSuccess方法。

@Component("oursAuthenticationSuccessHandler")
public class OursAuthenticationSuccessHandler implements AuthenticationSuccessHandler {
    @Override
    public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response, FilterChain chain, Authentication authentication) throws IOException, ServletException {

    }

    @Override
    public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response, Authentication authentication) throws IOException, ServletException {
        Object principal = authentication.getPrincipal();
        response.setContentType("application/json;charset=utf-8");
        PrintWriter out = response.getWriter();
        out.write(new ObjectMapper().writeValueAsString(principal));
        out.flush();
        out.close();
    }
}

OursAuthenticationFailureHandler、OursLogoutSuccessHandler、OursAuthenticationEntryPoint雷同,通过实现相应的接口,自定义处理行为。

配置

    @Autowired
    private AuthenticationSuccessHandler oursAuthenticationSuccessHandler;
    @Autowired
    private AuthenticationFailureHandler oursAuthenticationFailureHandler;
    @Autowired
    private LogoutSuccessHandler oursLogoutSuccessHandler;
    @Autowired
    private AuthenticationEntryPoint oursAuthenticationEntryPoint;

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.authorizeRequests()
                .anyRequest().authenticated()
                .and().formLogin()
                .loginPage("/login")
                .defaultSuccessUrl("/index")
                //登录成功
                .successHandler(oursAuthenticationSuccessHandler)
                //登录失败
                .failureHandler(oursAuthenticationFailureHandler)
                .permitAll()
                .and().logout()
                .logoutUrl("/logout")
                //注销成功
                .logoutSuccessHandler(oursLogoutSuccessHandler)
                .permitAll()
                .and().headers().frameOptions().sameOrigin()
                .and().csrf().disable()
                .exceptionHandling()
                //未认证处理
                .authenticationEntryPoint(oursAuthenticationEntryPoint)
        ;
    }

以上代码将认证成功、认证失败、注销成功和未认证均做了体现。

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

希克

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值