如何使会话数据可序列化

发布于 2024-12-04 19:32:03 字数 368 浏览 0 评论 0原文

之前我们已经实现了粘性会话。

中的粘性会话不起作用

这是我们环境的链接: 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 技术交流群。

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

发布评论

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

评论(1

何必那么矫情 2024-12-11 19:32:03

java.io.Serialized 是一个所谓的标记接口。它不包含任何方法。因此,要使某个类的对象可序列化,您不必实现任何内容。只需将 Serialized 添加到您的类实现的接口列表中即可。

IE:

class MyClass implements Serializable {
}

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.:

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