There is no PasswordEncoder mapped for the id "null"


因为Spring-Security从4+升级到5+,导致There is no PasswordEncoder mapped for the id “null”错误。

解决方案:
1.可在密码验证类中添加
@Bean
public static NoOpPasswordEncoder passwordEncoder() {
  return (NoOpPasswordEncoder) NoOpPasswordEncoder.getInstance();
}


2.或者在xml配置文件中添加
<b:bean id="passwordEncoder"    class="org.springframework.security.crypto.password.NoOpPasswordEncoder" factory-method="getInstance"/>


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM