HttpSession 随着每次调用 GWT-RPC 服务而变化
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置会话的过期时间。
Set the expiration time of session.