在新的Spring Security中,我应该做些什么来替换这些代码:
@Override protected void configure(AuthenticationManagerBuilder auth) throws Exception { auth.userDetailsService(userService).passwordEncoder(passwordEncoder).and().eraseCredentials(false); }
字符串
我希望得到最后的代码。
在新的Spring Security中,我应该做些什么来替换这些代码:
@Override protected void configure(AuthenticationManagerBuilder auth) throws Exception { auth.userDetailsService(userService).passwordEncoder(passwordEncoder).and().eraseCredentials(false); }
字符串
我希望得到最后的代码。
1条答案
按热度按时间wi3ka0sx1#
对于Sping Boot 版本3,您可以参考我的代码:
字符串
CustomAuthenticationManager:
型