使用 spring 3 安全性在 jsp 页面中访问我的自定义用户对象

发布于 2024-12-10 16:50:01 字数 502 浏览 0 评论 0原文

我已经实现了 UserDetailsS​​ervice,它返回 MyUser 的实例(它实现了 UserDetails

public MyUser loadUserByUsername(String arg0)

现在我想访问 上的自定义 getter/字段>MyUser 在我的 JSP 页面中,到目前为止我得到了这个:

${pageContext.request.userPrincipal.name}

但这只允许访问 Principal 对象。如何访问 MyUser 对象?

I have implemented UserDetailsService, it returns an instance of MyUser (which implements UserDetails)

public MyUser loadUserByUsername(String arg0)

Now I want to access my custom getters/fields on MyUser in my JSP pages, so far I got this:

${pageContext.request.userPrincipal.name}

But that only allows access to a Principal object. How can I access MyUser object?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

靑春怀旧 2024-12-17 16:50:01

在 jsp 页面中很简单,我添加了以下内容:

<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags" %>
...
<sec:authentication property="principal.firstname" /> 

其中主体实际上是 MyUser 的实例,因此“firstname”可以是我的任何自定义 getter 和 setter

its easy in the jsp page I added this :

<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags" %>
...
<sec:authentication property="principal.firstname" /> 

Where principal is actually an instance of MyUser, so "firstname" can be any of my custom getters and setters

挽袖吟 2024-12-17 16:50:01

分析HTTPSesson后,登录成功后立即发现有一个名为SPRING_SECURITY_CONTEXT的属性。例如,我的自定义 UserDetails 具有名为 user 的对象,该对象具有属性 firstName。在 JSP 中,可以通过以下方式获取此属性的值:

${sessionScope.SPRING_SECURITY_CONTEXT.authentication.principal.user.firstName}

After analyzing the HTTPSesson, immediately after the successful log in, I found out that there is an attribute named SPRING_SECURITY_CONTEXT. For example, mine custom UserDetails has object named user, which has property firstName. In JSP, value of this property can be reached with the following:

${sessionScope.SPRING_SECURITY_CONTEXT.authentication.principal.user.firstName}
假情假意假温柔 2024-12-17 16:50:01

如果您的 MyUser 对象实现了 Principal 并且在成功登录后将其放置在 http 会话中,您可以从会话中获取它并进行转换。


您可以实现 AuthenticationSuccessHandler 并在其中注入您的 UserDetailsS​​ervice 并将其放置在会话中。

然后,您可以将 AuthenticationSuccessHandler 注入到处理 元素的 UsernamePasswordauthenticationFilter 中。

如果您向我提供有关安全上下文配置的详细信息,我可以为您提供更多详细信息。

If your MyUser object implements Principal and you place it in the http session on successful login, you could get it from the session and cast it.


You could implement the AuthenticationSuccessHandler inject your UserDetailsService in there and place it in the session.

Then you could inject your AuthenticationSuccessHandler into the UsernamePasswordauthenticationFilter which handles the <form-login> element.

If you give me details about your security context config I could give you more details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文