标签: authentication spring-security spring-ldap
我知道如何手动设置身份验证:
Authentication authentication = new UsernamePasswordAuthenticationToken(user, null, person.getAuthorities());
但是因为我使用LDAP,“user”变量必须是LdapUserDetails,如何创建一个LdapUserDetails实例,输入是用户名字符串?