如何在Spring Security(java配置)中检索用户密码? 我试过这个:
@Autowired
public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
auth.eraseCredentials(false);
}
和此:
Object credentials = authentication.getCredentials();
但返回的凭据始终为空。