5
我正在使用Play 2.2.1並嘗試覆蓋GlobalSettings中的onRouteRequest函數。我在網上找到的所有例子都是在Play 2.2.x之前使用的,並且它們在2.2.x中似乎不起作用。基本上想要在響應標題中爲所有響應設置一些自定義的東西。使用Play中的自定義處理程序重寫onRouteRequest! scala
到目前爲止,我已經試過以下,基於this:
object Global extends GlobalSettings {
override def onRouteRequest(request: RequestHeader): Option[Handler] = {
super.onRouteRequest(request).map { handler =>
handler match {
case a: Action[_] => CustomAction(a)
case _ => handler
}
}
}
然而,由於沒有匹配項行動[_]這是行不通的。
非常感謝所有提前的幫助!