In game 1.X, you could get an absolute reverse routing URL using:
@@{MyController.method(param)} --> http:
instead of relative reverse routing with:
@{MyController.method(param)} --> /myaction/param
I am using play 2.0 with the scala version. I can get relative routes using:
@routes.MyController.method(param) --> /myaction/param
As "@@" just escapes the "@" reserved for scala statements, is it also possible to have absolute reverse routing? I can not find it in the API
source
share