如何从 JAX-RS Web 服务中检索会话 ID?

发布于 2024-10-14 18:40:33 字数 98 浏览 1 评论 0原文

我无法弄清楚如何从给定的 JAX-RS Web 服务请求中检索会话 ID。我认为它是可用的,但我不知道如何检索它。

我没有使用 CXF。如果有任何帮助,我将不胜感激。

I cannot figure out how to retrieve the session ID from a given JAX-RS webservice request. I assume it is available, but I do not know how to retrieve it.

I am NOT using CXF. I would be grateful for any assistance.

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

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

发布评论

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

评论(1

提笔书几行 2024-10-21 18:40:33

您可以使用 < code>@Context 注解来获取HttpServletRequest的当前实例。

@Path("/session-id.txt")
public class SessionIdResource {

    @GET
    @Produces(MediaType.TEXT_PLAIN)
    public String getSessionId(@Context HttpServletRequest request) {
        return request.getSession(true).getId();
    }
}

You can use the @Context annotation to get the current instance of the HttpServletRequest.

@Path("/session-id.txt")
public class SessionIdResource {

    @GET
    @Produces(MediaType.TEXT_PLAIN)
    public String getSessionId(@Context HttpServletRequest request) {
        return request.getSession(true).getId();
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文