如何减少响应时间

发布于 2024-12-31 22:04:52 字数 498 浏览 3 评论 0原文

我正在加载一个jsp,其中有一个对另一台服务器的内部请求。

例如。

<html>
      <head>
       </head>
      <body>
            <div> Welcome to....</div>
            .....
            .....

      <%
            HttpConnection conn = new HttpConnection("http://someothersite/somepage");
            conn.getResponse ();
      %>

            <div><%=response%></div>
      ....
      </html>

在这种情况下,有哪些更好的方法可以减少响应时间?

I am loading a jsp, in which there is an internal request to another server.

eg.

<html>
      <head>
       </head>
      <body>
            <div> Welcome to....</div>
            .....
            .....

      <%
            HttpConnection conn = new HttpConnection("http://someothersite/somepage");
            conn.getResponse ();
      %>

            <div><%=response%></div>
      ....
      </html>

what are all the better ways to reduce the response time in this case?

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

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

发布评论

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

评论(2

初相遇 2025-01-07 22:04:52

尝试使用异步 Javascript (AJAX)。
响应时间可能相同。但它不会阻止页面其他部分的加载。使用 Ajax 响应填充所需的 div。
你可能会在 google 搜索上找到很多关于如何使用 AJAX 的文章。

Try using Asynchronous Javascript(AJAX).
The response time may be the same. But it will not block the other parts of your page to get loaded. Populate the required div with the Ajax response.
You may get a lot of articles regarding how to use AJAX on a google search.

你在看孤独的风景 2025-01-07 22:04:52

<块引用>
<块引用>
<块引用>

减少数据库连接并使用优化查询。
用于缓存js和图片



Less database connection and use optimize query.
use to cache js and picture

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