Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在调用一个耗时超过 5 秒的 REST ws,并且我的 Promise 响应超时。我怎样才能将这个时间增加到 5 秒以上?
您可以将 Long 传递给与此方法的超时相对应的 Promise 的 get 方法。例如:
promise.get(120000L);
将为 get 方法设置 2 分钟超时。