我有基于apache HttpClient的java应用程序。我想在没有应用程序更改的情况下增加套接字超时(应用程序中没有可用的超时设置)。我怎么能通过系统属性(或没有更改应用程序的其他方式)来做到这一点?
答案 0 :(得分:1)
您可以使用spring来读取系统属性,如下所示:
<bean id="yourBean" class="com.company.YourBean">
<property name="httpClientTimeout"
value="#{ systemProperties['httpclient.timeout'] }"/>
<!-- where httpclient.timeout is system variable-->
<!-- other properties goes here....-->
</bean>
获得超时值后,可以将超时设置为HttpClient。
HttpParams params = new BasicHttpParams();
HttpConnectionParams.setConnectionTimeout(params, timeout);
HttpConnectionParams.setSoTimeout(params, timeout);
DefaultHttpClient httpclient = new DefaultHttpClient(params);
HttpPost httpPost = new HttpPost(requestURL);
httpPost.setEntity(new StringEntity(requestBody));
HttpResponse response = httpclient.execute(httpPost);
从属性文件中读取超时并将其传递给此代码段。
答案 1 :(得分:1)
不是直接的,但您可以在代码中轻松完成:
httpClient.getParams().setParameter("http.socket.timeout",
Integer.getInteger("http.socket.timeout", <defaultValue>);
(注意Integer.getInteger(String, int)
从给定的系统属性读取整数值)