如何减少响应时间
我正在加载一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用异步 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.