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