Play框架路线中的变量

时间:2015-12-22 11:44:03

标签: playframework routes playframework-2.4

在Play Framework 1.3.x中,可以在routes file中使用变量:

%{ context = play.configuration.getProperty('context', '') }%

# Home page
GET    ${context}         Secure.login

但是,这种方法在Play 2.4中似乎不起作用。

是否有可能在play 2.4中的routes文件中设置变量?

提前致谢。

1 个答案:

答案 0 :(得分:0)

GET / poperties /:userId /:storeId @ com.a.controllers.b.c(userId,storeId,propertyType:Int = 7)

GET / poperties1 /:userId /:storeId @ com.a.controllers.b.c(userId,storeId,propertyType:Int = 6)

propertyType是一个变量。