我使用spray-client
访问REST服务。服务器返回的部分数据位于http响应头中(其余部分位于响应主体中)。
为了能够解组响应,我正在使用Unmarshaller
。但是,unmarshaller只能访问响应主体(作为HttpEntity
的一个实例),并且在此阶段似乎无法访问所有标题。
这是当前的管道和unmarshaller代码:
implicit val IDsUnmarshaller =
Unmarshaller[List[ID]](MediaTypes.`text/plain`) {
case HttpEntity.NonEmpty(contentType, data) =>
data.asString.split("\n").toList.map( ID(_) )
}
val pipeline: HttpRequest => Future[List[ID]] = (
encode(Gzip)
~> sendReceive
~> decode(Deflate)
~> unmarshal[List[ID]]
)
在解组时有无论如何访问它们吗?有什么工作吗?
答案 0 :(得分:1)
如果你提供FromResponseUnmarshaller而不是普通的Unmarshaller,你也可以访问标题。
有关创建FromResponseUnmarshallers的方法,请参阅此文件:https://github.com/spray/spray/blob/master/spray-httpx/src/main/scala/spray/httpx/unmarshalling/Deserializer.scala
E.g。你可以提供一个隐含的函数HttpResponse => List[ID]
,这个函数应该被选中。