对多渠道的请求中,有时候需要控制请求的响应时间,
在java JDK1.5后,提供的并发包java.util.concurrent为此提供了响应的解决办法。
jdk1.5自带的并发库中Future类就能满足这个需求。
Future类中重要方法包括get()和cancel()。
get()获取数据对象,如果数据没有加载,就会阻塞直到取到数据,而 cancel()是取消数据加载。
另外一个get(timeout)操作,表示如果在timeout时间内没有取到就失败返回,而不再阻塞。
private static final ExecutorService exec = Executors.newCachedThreadPool();
Callable<CloseableHttpResponse> call = new Callable<CloseableHttpResponse>() {
public CloseableHttpResponse call() throws Exception {
return doProcess(configuration.getMethodName());
}
};
Future<CloseableHttpResponse> future = exec.submit(call);
try {
resp = future.get(limitTime, TimeUnit.SECONDS);// 设置请求时间为60秒
} catch (InterruptedException e) {
e.printStackTrace();
//TODO
} catch (ExecutionException e) {
e.printStackTrace();
//TODO
} catch (TimeoutException e) {
e.printStackTrace();
//TODO
}
相关文章
- Java如何从HttpServletRequest中读取HTTP请求的body
- 如何修正Java中的“请求数组大小超过VM限制”错误?
- http请求中java中的302和sendRedirect的区别
- java爬虫:在请求body中增加json数据采集
- java通过HttpServletRequest获取post请求中的body内容
- wemall app商城源码中基于JAVA通过Http请求获取json字符串的代码
- 简单介绍Java网络编程中的HTTP请求
- java 中http请求为了防止乱码解决方案
- LB层到Real Server之间访问请求的响应时间及HTTP状态码监控及报警设置
- Java中前台JSP请求Servlet实例(http+Servlet)