0

我已经使用 spring 使用了 LDAP 身份验证,它正在工作。

现在我想在不使用脚本的情况下在 jsp 页面上显示经过身份验证的用户的详细信息。应从 http 会话中选择用户详细信息。但是我没有正确的方法继续前进。

如果有人知道解决方案,请与我分享。

谢谢

4

1 回答 1

1

使用 Spring 标签库

http://static.springsource.org/spring-security/site/docs/3.0.x/reference/taglibs.html

然后,您可以使用以下命令访问用户主体(包含 DN、组等)

<sec:authentication property="principal.<whatever>" />
于 2013-05-16T13:24:01.160 回答