0

我的控制器中有这段代码:

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 中。

我在这里看到了类似的帖子,但也没有答案。

先感谢您!

4

1 回答 1

0

在创建新项目并粘贴此代码后,问题*神奇地*解决了。

于 2013-07-18T13:29:46.650 回答