1

可能重复:
使用 Spring Security 时,在 bean 中获取当前用户名(即 SecurityContext)信息的正确方法是什么?
spring security如何检索用户名

我使用 spring ldap 来验证我的网络应用程序,

<ldap-server id="sss" port="389"
             url="ldap://ldap.example.com:389/ou=active,ou=employees,ou=people,o=example.com?uid?sub"/>

<authentication-manager alias="authenticationManager">
    <ldap-authentication-provider
            server-ref="sss"
            role-prefix="ROLE_">
    </ldap-authentication-provider>
</authentication-manager>

它可以工作,但我不知道如何在登录页面中填写用户名,因为我想将它显示在我的页面顶部。

谢谢。

4

1 回答 1

5

我找到了这个:

SecurityContextHolder.getContext().getAuthentication().getPrincipal()

返回搜索到的条目。

于 2012-08-31T03:00:16.567 回答