AKKA HTTP PathMatcher简化

时间:2018-10-19 07:18:22

标签: akka-http

你们中的许多人都看过这个东西:

val route: Route = get {
  pathPrefix("hello" / String) { name =>
    pathEndOrSingleSlash {
      complete(s"Hello! $name")
    }     
  }
}

我想稍微简化一下,像这样:

val route: Route = get {
  pathWithEndOrSlash("hello" / String) { name =>
    complete(s"Hello! $name")
  }
}

我该怎么做?

0 个答案:

没有答案