我的控制器中有这段代码:
public static Result index() {
return async(WS.url(MY_WEBSERVICE_URL).get().map(
new Function<WS.Response, Result>() {
public Result apply(WS.Response response) {
return ok(index.render(form(response.getBody()));
}
}
);
}
基本上,它是来自播放网站上示例的副本 我收到此消息
[TimeoutException: 2147483647 之后没有收到响应]
大约1 分钟后,即使我已经设置
WS.url(MY_WEBSERVICE_URL).setTimeout(Integer.MAX_VALUE)
或添加
ws.timeout=99999999999
在 application.conf 中。
我在这里看到了类似的帖子,但也没有答案。
先感谢您!