mapInnerRoute
シグネチャ
説明
内部ルートの実行モデルを任意のロジックでラップして変更します。
`` mapInnerRoute``ディレクティブは内部ルートを他のルートに置き換えるための:ref:`Custom Directives`のビルディングブロックとして使用されます。 通常、返されたルートはカスタム実行ロジックで元のルートをラップします。
例
val completeWithInnerException =
mapInnerRoute { route => ctx =>
try {
route(ctx)
} catch {
case NonFatal(e) => ctx.complete(s"Got ${e.getClass.getSimpleName} '${e.getMessage}'")
}
}
val route =
completeWithInnerException {
complete(throw new IllegalArgumentException("BLIP! BLOP! Everything broke"))
}
// tests:
Get("/") ~> route ~> check {
responseAs[String] shouldEqual "Got IllegalArgumentException 'BLIP! BLOP! Everything broke'"
}
Contents