他のサーバーに内部要求があるjspをロードしています。応答時間を短縮する方法
例えば、
<html>
<head>
</head>
<body>
<div> Welcome to....</div>
.....
.....
<%
HttpConnection conn = new HttpConnection("http://someothersite/somepage");
conn.getResponse();
%>
<div><%=response%></div>
....
</html>
すべての場合、この場合の応答時間を短縮するためのより良い方法はありますか?