Execution exceptionAskTimeoutException: Timed out playframework
问题 I'm calling a method from Ajax... and PlayFramework 2.1.3 $.ajax({ type: "POST", contentType: "application/json; charset=utf-8", dataType: "json", url: "/examplefoo", data: JSON.stringify(exampleArray), success: function(data) { doSomething(); }, error: function(e) { console.log(e); } }); On Application.java I call a method that does a huge computation and this spend a lot of time... @BodyParser.Of(play.mvc.BodyParser.Json.class) public static Result examplefoo() throws SQLException,