GWT 在维护状态和性能方面与 JSF/Wicket 有何不同

发布于 2024-09-14 09:46:57 字数 89 浏览 2 评论 0原文

我是 GWT、JSF 和 Wicket 的新手。我只是想知道 GWT 与 JSF/Wicket 维护客户端状态有何不同,以及在峰值负载下性能有何不同。有什么想法吗?

I am new to GWT, JSF and Wicket. I am just wondering how GWT differs from maintaining client state from JSF/Wicket and also how performance differs under peek load. Any thoughts?

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

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

发布评论

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

评论(1

甜点 2024-09-21 09:46:57

从技术上来说,没有什么不同。通过这三种方式,您可以将客户端状态存储在客户端上,或者存储在服务器上(在 http 会话中)。

  • 使用 GWT,使用 JSF 在客户端存储更多内容会更自然
  • ,您可以通过配置选项在客户端
  • 使用 Wicket 存储所有状态,您必须自己执行此操作(据我所知

)您可以使用 HttpSession

Technically, it doesn't differ. With all three you can either store the client state on the client, or on the server (in the http session).

  • with GWT it is a bit more natural to store more things on the client side
  • with JSF you have a configuration option to store all state on the client side
  • with Wicket you have to do this yourself (as far as I know)

But with all of them you can use the HttpSession

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