Как отделить обработку сущности от json body запроса в akka-http? - PullRequest
0 голосов
/ 11 декабря 2018

В AKKA-HTTP я хочу разделить сущность запроса POST и обработку как type в теле JSON запроса.

{ "type" :"custom", "article" : "xxxx"}
{ "type" :"formal", "article" : "yyyy"}

 pathPrefix("article") {
    pathEnd {
      post {
       entity(as[CustomPostRequestBody]) { e ⇒ postCustomPost(e) }
       entity(as[FormalPostRequestBody]) { e ⇒ postUserAdvice(e) }
      }
    }
 }
...