authenticationsuccessevent后accessdeniedexception

zqdjd7g9  于 2021-07-13  发布在  Java
关注(0)|答案(0)|浏览(146)

我有一个spring引导库,它用

@Component
public class AuthenticationSuccessListener implements ApplicationListener<AuthenticationSuccessEvent> {

    @Override
    public void onApplicationEvent(AuthenticationSuccessEvent event) {
        // this gets called
    }
}

@Component
public class CustomAccessDeniedHandler implements AccessDeniedHandler
{
    @Override
    public void handle
    (
        HttpServletRequest    request,
        HttpServletResponse   response,
        AccessDeniedException exception
    )
    throws IOException, ServletException
    {
        // this also gets called
    }
}

身份验证成功,但访问被拒绝。日志里没有其他线索。
在身份验证和授予/拒绝访问之间会发生什么?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题