如何使用 spring mvc 获取拦截器中的主体?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
无论您身在何处,都可以联系校长
You can get the Principal wherever you are with
如果用户尚未经过身份验证,则返回 null。确保用户在请求 request.getRemoteUser() 之前已通过身份验证
It returns null, if the user has not been authenticated. Make sure that user got authenticated before requesting for request.getRemoteUser()