org.springframework.security.authentication.BadCredentialsException: Bad credentials

在使用Spring security框架进行登录权限控制时,无法跳转正确的页面,一直跳转错误界面,查看debug日志信息发现报错:
###org.springframework.security.authentication.BadCredentialsException: Bad credentials
debug日志显示
这里显示是密码编码问题
spring security 存储密码时会对密码进行加密,获取密码时会对密码进行解密,因为我的密码是自己手动输入到数据库的所以未经加密在spring security解析密码时就会产生错误,解决方法,对数据库取出的密码进行BCrypt加密,代码如下:
new BCryptPasswordEncoder().encode(你从数据库取出的密码)
我的完整加密代码如下:
List roles=userInfo.getRoles();
List authorities=getAuthority(roles);
User user=new User(userInfo.getUsername(),new BCryptPasswordEncoder().encode(userInfo.getPassword()),userInfo.getStatus()==0?false:true,true,true,true,authorities);
return user;
在spring security 配置文件中,加密方式的配置如下:
security:authentication-manager
<security:authentication-provider user-service-ref=“userService”>

<security:password-encoder ref=“passwordEncoder”/>
</security:authentication-provider>
</security:authentication-manager>

<!-- 配置加密类 -->
<bean id="passwordEncoder" class="org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder"/>
  • 3
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

weixin_44627802

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值