我现在使用喷雾--1.1-M7但现在我改为1.3.3。在1.1-M7中有HttpBody,但在1.3.3版本中不存在。那么在我的代码中我必须做什么。
我的代码如下所示:我需要做什么才能获得:
implicit def json4sUnmarshaller[T: Manifest] = {
Unmarshaller[T](`application/json`) {
case x: HttpBody ⇒
read[T](cleanupString(x.asString))
}
}
答案 0 :(得分:1)
您要查找的类型是HttpEntity