Tapestry 5 会话 bean
这个问题应该很常见,但我找不到任何明确的信息。
基本上,我的网络应用程序的每个客户端都在构建一个对象,我想将该对象存储在会话 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
@SessionState
注释将值附加到会话并在多个页面中使用它们:另请参阅 会话存储部分Tapestry 文档。
You can use the
@SessionState
annotation to attach values to the session and use them in multiple pages:Also take a look at the session storage section in the Tapestry docs.