这段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
,我必须做错了什么,但找不到。