为什么path(“ ..” / Segment)不匹配

时间:2019-08-24 20:11:19

标签: scala akka-http

这段scala代码:

def routes() = {
    path("/stat" / Segment) { str : String =>
      get {
        logger.info(s"${str} - test ")
        complete("Complete")
      }
    } ~ path("log") {
      print("log")
      complete("complete")
    }
}

curl localhost:8080/log上返回“已完成” 但是在执行The requested resource could not be found时返回curl localhost:8080/stat/boe,我必须做错了什么,但找不到。

0 个答案:

没有答案