Google Sitebricks 会话管理

发布于 2024-11-15 05:17:54 字数 135 浏览 2 评论 0原文

我浏览了 Sitebricks 网站 和相关论坛,但无法确定它是否支持会话管理(跨多个请求保留状态)或不是。只是想知道是否有人知道这个问题的答案?

I explored Sitebricks website and related forums but could not find out if it supports session management (preserving state across multiple requests) or not. Just wondering if anyone knows the answer to this?

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

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

发布评论

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

评论(1

指尖微凉心微凉 2024-11-22 05:17:54

Sitebricks 基于 Guice 的 Guice Servlet 扩展,它允许您通过使用 @SessionScoped 或在绑定模块时指定会话范围:

bind(Something.class).to(SomeImplementation.class).in(SessionScoped.class);

Sitebricks is based on the Guice Servlet extension of Guice, which allows you to scope injected objects by session either by annotating them with @SessionScoped or by specifying session scope when you bind in a module:

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