如何使会话数据可序列化
之前我们已经实现了粘性会话。
中的粘性会话不起作用
这是我们环境的链接: Apache 下一个任务是实现会话复制。
我们当前使用 tomcat 示例 cart.jsp
来演示此行为。
据说所有会话属性都必须实现java.io.serialized。
您对在哪里实施它有什么建议吗?我们正在密切关注本教程。
tomcat.apache.org/tomcat-6.0-doc/cluster-howto.html
Previously we have implemented sticky session.
Here's the link on our environment: Sticky Session in apache doesn't work
Our next task is to implement session replication.
We are current using tomcat example, cart.jsp
to demonstrate this behavior.
It is said that all session attribute must implement java.io.serializable.
Do you have any tips on where to implement it? We are following this tutorial closely.
tomcat.apache.org/tomcat-6.0-doc/cluster-howto.html
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
java.io.Serialized 是一个所谓的标记接口。它不包含任何方法。因此,要使某个类的对象可序列化,您不必实现任何内容。只需将 Serialized 添加到您的类实现的接口列表中即可。
IE:
java.io.Serializable is a so-called marker interface. It contains no methods. So to make objects of some class serializable you don't have to implement anything. Simply add Serializable to the list of interfaces you class implements.
i.e.: