序列化并存储 Controller 对象

发布于 2024-12-24 16:41:01 字数 154 浏览 1 评论 0原文

该对象是否包含页面、桌面的所有状态(如快照)控制器对象实际存储什么。

有没有办法将页面上的完整数据和组件存储到对象中。我想检索相同的页面状态。

这将明确问题: 我想存储 Web 应用程序特定部分的完整状态,然后当我重新加载页面时,我想设置我之前保存的部分的视图。

Does the object contains all the state of pages,desktop, (like a snapshot) What does an controller object actually store.

Is there any way to store the complete data and components on an page into an object. I want to retrieve same page state.

This shall clear problem:
I want to store complete state of particular portion of web application, and then when I reload the page I want to set the view of the portion that I have saved earlier.

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

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

发布评论

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

评论(1

旧城烟雨 2024-12-31 16:41:01

如果您拦截(或包装)servlet 输出流,则可以做到这一点。您可以存储每个请求 URL 由应用程序返回的内容,因此您将能够逐字节检索应用程序的状态。

编辑。

在这里您可以如何实现这一点。控制器是一个实现 doGet() 和/或 doPost 的 servlet。

以下是所有此类方法的签名:

protected void doGet(HttpServletRequest req, HttpServletResponse resp)

典型的代码模式如下:

// do somthing and get data.
resp.getOuputStream().write(somthing);

您可以编写自己的扩展输出流(或编写器) OutputStream 并包装 2 个负载流:servlet 流和文件流。它重写其 write 方法,如下所示:

public abstract void write(int b) throws IOException {
    fileOut.write(b);
    servletOut.write(b);
}

现在每个字节都写入 Web 客户端和文件。

You can do it if you intercept (or wrap) the servlet output stream. You can store content returned by your application per request URL, so you will be able to retrieve the state of the application byte-by-byte.

EDIT.

Here how you can implement this. Controller is a servlet that implements doGet() and/or doPost.

Here is how the signature of all such methods look like:

protected void doGet(HttpServletRequest req, HttpServletResponse resp)

The typical pattern of code looks like:

// do somthing and get data.
resp.getOuputStream().write(somthing);

You can write your own output stream (or writer) that extends OutputStream and wraps 2 palyload streams: servlet stream and file stream. It overrides its write method like the following:

public abstract void write(int b) throws IOException {
    fileOut.write(b);
    servletOut.write(b);
}

Now each byte is written both to the web client and to file.

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