HttpSession 随着每次调用 GWT-RPC 服务而变化

发布于 2024-10-01 04:53:12 字数 749 浏览 5 评论 0原文

我有一个 GWT-RPC 服务,有两种方法:测试和登录。

我按此顺序调用这些方法,每次都打印出会话信息:

login()

Session Information:
ID: odl0h9578zww
isNew: true

test()

Session Information:
ID: lqv4leczh3ke
isNew: true

从这里可以看出,两个调用都有不同的会话 ID。

在客户端,在每个调用的 onSuccess 中,我打印出 JSESSIONID cookie 的值:

login(), JESSIONID cookie found, value is od10h9578zww
test(), JESSIONID cookie found, value is lqv4leczh3ke

如果我点击刷新,我会得到以下内容(这是我第一次所期望的):

login()

Session Information:
ID: mgn1uvuzdwx3
isNew: false

test()

Session Information:
ID: mgn1uvuzdwx3
isNew: false

任何人都可以解释一下为什么在刷新之前,每次调用都会获得一个新的会话 ID?

I have an GWT-RPC service with two methods, test and login.

I call the methods in this order, printing out the session information each time:

login()

Session Information:
ID: odl0h9578zww
isNew: true

test()

Session Information:
ID: lqv4leczh3ke
isNew: true

As can be seen here, both calls have a different session ID.

On the client side in the onSuccess for each of these calls I print out the value of the JSESSIONID cookie:

login(), JESSIONID cookie found, value is od10h9578zww
test(), JESSIONID cookie found, value is lqv4leczh3ke

If I hit refresh, I get the following (which is what I expected the first time):

login()

Session Information:
ID: mgn1uvuzdwx3
isNew: false

test()

Session Information:
ID: mgn1uvuzdwx3
isNew: false

Can anyone explain why, before a refresh, each call gets a new session ID?

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

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

发布评论

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

评论(1

瀟灑尐姊 2024-10-08 04:53:12

设置会话的过期时间。

Set the expiration time of session.

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