如何使用 spring mvc 获取拦截器中的主体?

发布于 2025-01-08 07:28:43 字数 204 浏览 0 评论 0原文

我在 Spring MVC 3.1 中编写 Web 项目,并通过扩展 HandlerInterceptorAdapter 实现 Interceptor 类,我需要找到一种获取主体的方法。 我尝试 request.getUserPrincipal() 它返回 null, 我尝试 request.getRemoteUser() 它返回 null。 我使用 Oauth 2 和基本身份验证。 谢谢。

I write Web project in spring MVC 3.1 and i implement Interceptor class by extends HandlerInterceptorAdapter and i need to find a way get the Principal.
I try request.getUserPrincipal() and it return null,
I try request.getRemoteUser() and it return null.
I using Oauth 2 and basic Authentication.
Thanks.

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

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

发布评论

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

评论(2

宁愿没拥抱 2025-01-15 07:28:43

无论您身在何处,都可以联系校长

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

You can get the Principal wherever you are with

SecurityContextHolder.getContext().getAuthentication().getPrincipal();
青萝楚歌 2025-01-15 07:28:43

如果用户尚未经过身份验证,则返回 null。确保用户在请求 request.getRemoteUser() 之前已通过身份验证

It returns null, if the user has not been authenticated. Make sure that user got authenticated before requesting for request.getRemoteUser()

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