如何使用Spring Security从登录失败中获取用户名?

如何使用Spring Security从登录失败中获取用户名?,第1张

如何使用Spring Security从登录失败中获取用户名?

好的,据我所知,答案竟然是非常简单的事情,没有经过大量讨论或记录。

这就是我要做的(在创建此类的任何地方都无需配置)…

import org.apache.log4j.Logger;import org.springframework.context.ApplicationListener;import org.springframework.security.authentication.event.AuthenticationFailureBadCredentialsEvent;import org.springframework.stereotype.Component;@Componentpublic class MyApplicationListener implements ApplicationListener<AuthenticationFailureBadCredentialsEvent> {    private static final Logger LOG = Logger.getLogger(MyApplicationListener.class);    @Override    public void onApplicationEvent(AuthenticationFailureBadCredentialsEvent event) {        Object userName = event.getAuthentication().getPrincipal();        Object credentials = event.getAuthentication().getCredentials();        LOG.debug("Failed login using USERNAME [" + userName + "]");        LOG.debug("Failed login using PASSWORD [" + credentials + "]");    }}

我与Spring Security专家相距甚远,因此,如果有人读过此书,并且知道某个原因,我们就不应该这样做或知道我想听听它的更好方法。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5442313.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存