由于WebSecurityConfigurerAdapter在5.7中已弃用,因此我遇到了一个问题,即如何替换旧配置
旧配置:
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
auth.ldapAuthentication()
.userSearchFilter(usersFilter)
.contextSource()
.url(url)
.managerDn("login")
.managerPassword("password");
}
}
在spring.io中没有表示如何替换.url()、.managerDn()和.managerPassword()
1条答案
按热度按时间xytpbqjk1#