千家信息网

怎么解决Spring Security中的There is no PasswordEncoder mapped for the id “null”问题

发表于:2025-01-22 作者:千家信息网编辑
千家信息网最后更新 2025年01月22日,这篇文章主要讲解了"怎么解决Spring Security中的There is no PasswordEncoder mapped for the id "null"问题",文中的讲解内容简单清晰,易
千家信息网最后更新 2025年01月22日怎么解决Spring Security中的There is no PasswordEncoder mapped for the id “null”问题

这篇文章主要讲解了"怎么解决Spring Security中的There is no PasswordEncoder mapped for the id "null"问题",文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习"怎么解决Spring Security中的There is no PasswordEncoder mapped for the id "null"问题"吧!

@Overridepublic UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {    logger.info("登陆用户名:"+username);    //根据用户名查找  可以采用多种查询数据库 这里暂时先写死了    return new User(username,"123456", AuthorityUtils.commaSeparatedStringToAuthorityList("admin"));

出现问题 访问的 登陆页面 输入错误 的 密码 和 用户名的时候 直接 返回错误 There is no PasswordEncoder mapped for the id "null"

现在 采用这个 方法

return new User(username,"{noop}123456", AuthorityUtils.commaSeparatedStringToAuthorityList("{noop}admin"));

问题解决

感谢各位的阅读,以上就是"怎么解决Spring Security中的There is no PasswordEncoder mapped for the id "null"问题"的内容了,经过本文的学习后,相信大家对怎么解决Spring Security中的There is no PasswordEncoder mapped for the id "null"问题这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是,小编将为大家推送更多相关知识点的文章,欢迎关注!

0