在 Restful Web 服务中如何以编程方式获取用户名或密码(基本身份验证)

发布于 2024-10-18 01:12:22 字数 299 浏览 4 评论 0原文

我在 jboss 上运行的 Java EE 应用程序 (ejb3) 中有宁静的 Web 服务。并且不知道如何以编程方式获取用户名或密码,就像调用服务方法时一样,我希望能够获得与 jaxws 类似的用户主体,

webServiceContext.getUserPrincipal().getName() 

否则

(httpServletRequest) <-- request.getUserPrincipal()

我很高兴听到解决方案,谢谢。

I have restful web services in a Java EE application (ejb3) running on jboss. And do not know how to get username or password programmatically, like when service method is called I want to be able to get this user principals as smilar to jaxws

webServiceContext.getUserPrincipal().getName() 

or

(httpServletRequest) <-- request.getUserPrincipal()

I would be glad to hear the solutions, thanks.

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

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

发布评论

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

评论(1

忆依然 2024-10-25 01:12:22

[已解决]
我已经找到了解决方案,就在这里;

使用

@Context
 protected SecurityContext sc;

Public TestResponse test(@Context SecurityContext sc){
   ..
   sc.getUserPrincipal.getName() //will return username
}

[SOLVED]
I have found the solution, here it is;

Use

@Context
 protected SecurityContext sc;

Or

Public TestResponse test(@Context SecurityContext sc){
   ..
   sc.getUserPrincipal.getName() //will return username
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文