调用远程接口总耗时200ms = 200ms(即耗时最长的那次远程接口调用) 在java8 之前可以通过实现Callable接口,获取线程返回结果。 java8 以后通 过CompleteFuture类实现该功能 CompleteFuture为例: public UserInfo getUserInfo(Long id) throws InterruptedException, ExecutionException { final UserInfo userInfo = new UserI...