在使用Unirest库
从一个Controller向另一个控制器发出GET请求时,我总是有连接超时应用程序在
运行http://localhost:9000
Slash extends Controller
中的代码是:
String URL = "http://localhost:9000/api/link/HZbeTR";
Logger.info("Requesting API. URL: %s. ObjectRef: %s", URL, objectRef);
HttpResponse<String> apiResponse = Unirest.get(URL).asString();
在日志中我有:
17:40:24,296 INFO ~ Requesting API. URL: http://192.168.2.36:9000/api/link/HZbeTR. ObjectRef: 5g2NqY
17:41:24,527 ERROR ~ Exception while searching for link by ident. Ident: HZbeTR, ObjectRef: 5g2NqY
17:41:24,528 ERROR ~ ObjectRef: 5g2NqY
com.mashape.unirest.http.exceptions.UnirestException: java.net.SocketTimeoutException: Read timed out
at com.mashape.unirest.http.HttpClientHelper.request(HttpClientHelper.java:143)
at com.mashape.unirest.request.BaseRequest.asString(BaseRequest.java:56)
at controllers.Slash.index(Slash.java:39)
at play.mvc.ActionInvoker.invokeWithContinuation(ActionInvoker.java:524)
at play.mvc.ActionInvoker.invoke(ActionInvoker.java:475)
at play.mvc.ActionInvoker.invokeControllerMethod(ActionInvoker.java:451)
at play.mvc.ActionInvoker.invokeControllerMethod(ActionInvoker.java:446)
at play.mvc.ActionInvoker.invoke(ActionInvoker.java:160)
at Invocation.HTTP Request(Play!)
Caused by: java.net.SocketTimeoutException: Read timed out
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
com.mashape.unirest.http.HttpClientHelper.request(HttpClientHelper.java:138)
... 8 more
17:41:24,932 DEBUG ~ Try to write on a closed channel[keepAlive:true]: Remote host may have closed the connection
路径/api/link/{str}
被路由到另一个扩展控制器的类。
直接请求http://localhost:9000/api/link/HZbeTR
时,只需几毫秒,我就有了回复。
我调试了网络,发现没有像GET http://localhost:9000/api/link/HZbeTR
我也把String URL = "http://yandex.ru"
和Unirest成功请求了Yandex。
答案 0 :(得分:1)
在开发模式下,执行池大小为1,因此您实际上是在阻止自己。如果增加池大小,则应该解决此问题。有关详细信息,请参阅https://www.playframework.com/documentation/1.4.x/configuration#play.pool上的文档。
play.pool=2
NB 您可能需要明确定义此设置适用的模式。