如何在Spring Security中检索用户密码

时间:2017-08-18 12:47:48

标签: java spring spring-security

如何在Spring Security(java配置)中检索用户密码? 我试过这个:

@Autowired
    public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
        auth.eraseCredentials(false);
    }

和此:

Object credentials = authentication.getCredentials();

但返回的凭据始终为空。

0 个答案:

没有答案