怎么解决SpringSecurity中的ThereisnoPasswordEncodermappedfortheid“null”问题-古蔺大橙子建站
RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
怎么解决SpringSecurity中的ThereisnoPasswordEncodermappedfortheid“null”问题

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

成都创新互联公司是专业的盐城网站建设公司,盐城接单;提供网站建设、网站制作,网页设计,网站设计,建网站,PHP网站建设等专业做网站服务;采用PHP框架,可快速的进行盐城网站开发网页制作和功能扩展;专业做搜索引擎喜爱的网站,专业的做网站团队,希望更多企业前来合作!

@Override
public 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”问题”的内容了,经过本文的学习后,相信大家对怎么解决Spring Security中的There is no PasswordEncoder mapped for the id “null”问题这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是创新互联,小编将为大家推送更多相关知识点的文章,欢迎关注!


文章名称:怎么解决SpringSecurity中的ThereisnoPasswordEncodermappedfortheid“null”问题
链接URL:http://scgulin.cn/article/gjgpso.html