Tapestry 5 会话 bean

发布于 2024-11-29 11:11:56 字数 222 浏览 1 评论 0原文

这个问题应该很常见,但我找不到任何明确的信息。

基本上,我的网络应用程序的每个客户端都在构建一个对象,我想将该对象存储在会话 bean 中,以便在不同的网页中重用。

我实际上使用单个静态类来简化开发,但现在我需要它可用于多个客户端(当然,静态类为所有客户端提供相同的静态对象)。

Tapestry 可以处理会话 bean 吗?如果没有,最好的解决办法是什么?

谢谢

The problem should be common, but i can't find any clear information about it.

Basically, each client of my web app is building an object, i would like to store this object in a session bean in order to be reused in different web pages.

I m actualy using a single static class for developpement ease, but now i need it to be available with multi clients (the static class, of course, gives the same static object for all clients).

Can tapestry handle session beans ? if not, what is the best work around to use ?

Thank you

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

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

发布评论

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

评论(1

我做我的改变 2024-12-06 11:11:56

您可以使用 @SessionState 注释将值附加到会话并在多个页面中使用它们:

@SessionState
private MyType myVar;

另请参阅 会话存储部分Tapestry 文档

You can use the @SessionState annotation to attach values to the session and use them in multiple pages:

@SessionState
private MyType myVar;

Also take a look at the session storage section in the Tapestry docs.

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