在游戏框架中自己呼叫路由

时间:2013-08-03 21:23:33

标签: playframework playframework-2.1

当我在变量中有路径和参数时,如何自己调用控制器动作(路径)?

我在文档(http://www.playframework.com/documentation/2.1.x/JavaFunctionalTest)中找到了这个:

import play.test.Helpers;
...
Result result = Helpers.routeAndCall(Helpers.fakeRequest(Helpers.GET, "/xx/Kiki"));

但是play.test包在生产模式下不可用。我正在使用最新的2.1.2。

1 个答案:

答案 0 :(得分:0)

我现在使用WS.url(“http://my.local.domain/ ....”)进行正常请求,使用eclipse jetty httpclient进行彗星请求。