Play可让您直接在控制器中返回多种不同类型,例如JsValue
或XML
以及纯文本。我想扩展它以接受协议缓冲区,所以我可以写:
def page = Action {
val protobuf = //...
Ok(protobuf)
}
答案 0 :(得分:10)
Java中的协议缓冲区都从单个com.google.protobuf.Message
类继承。
在应用程序控制器的范围内添加以下隐式转换:
implicit def contentTypeOf_Protobuf: ContentTypeOf[Message] = {
ContentTypeOf[Message](Some("application/x-protobuf"))
}
implicit def writeableOf_Protobuf: Writeable[Message] = {
Writeable[Message](message => message.toByteArray())
}
这些将允许Play直接在由Ok(protobuf)
我已经发布了一个反向情况的工作示例,其中可以解析传入的请求并自动提取protobuf。
解析器采用此示例中的操作形式,您也可以编写一个正文解析器:
object Put extends Controller {
def index = DecodeProtobuf(classOf[MyProtobuf]) { stack :MyProtobuf =>
Action {
// do something with stack
}
}
}
发送请求的客户端应将缓冲区序列化为字节数组,并将其直接传递给请求主体。