Wicket 能否同时处理同一会话中同一页面的两个请求?
当我单击链接 1,然后在收到响应之前单击同一页面上的链接 2 时,我从 Wicket 收到“页面已过期”错误。 Wicket 概念上是否能够进行这样的并发处理?
有什么想法为什么 Wicket 会丢失会话(尽管它似乎驻留在 tomcat 上)?
When I click on link 1 and then, before the response was received, click on link 2 on the same page, I get a "Page Expired" error from Wicket. Is Wicket conceptional capable to do such a concurrent processing?
Any ideas why Wicket loses the session (it seems to reside on tomcat though)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己回答这个问题:似乎 Wicket 在第一个链接点击仍在处理时处理第二个链接点击没有问题。我用下面的例子尝试过。
以及相应的html页面:
当我单击链接1并在等待链接1的响应时单击链接2时,一切都很好,并且没有收到“页面过期”错误。
To answer the question myself: It seems like Wicket has no problem to process a second link click while the first is still beeing processed. I tried it with the following example.
And the corresponding html page:
When I click on link 1 and click on link 2 while waiting on the response of link 1, everything is fine and I get no "page expired" error.