0

我有以下功能(适用于 protobuf 对象 MyRequest

  def createRequestFromJson(requestJson: String): MyRequest = {
    val protoJson = getResource(requestJson)
    JsonFormat.fromJsonString[MyRequest](protoJson)
  }

我想用不同的对象重用这个函数,所以我添加了一个类型

  def createRequestFromJson[A](requestJson: String): A = {
    val protoJson = getResource(requestJson)
    JsonFormat.fromJsonString[A](protoJson)
  }

但后来我得到一个错误

Error:(68, 30) type arguments [A] do not conform to method fromJsonString's type parameter bounds [A <: scalapb.GeneratedMessage with scalapb.Message[A]]
JsonFormat.fromJsonString[A](protoJson)

我尝试将定义更改为

  def createResponseFromJson[A <: scalapb.GeneratedMessage with scalapb.Message[A]](protoJsonFile: String): A = {

但仍然给出更多错误

我究竟做错了什么?

4

1 回答 1

0

JsonFormat.fromJsonString需要一个隐含的GeneratedMessageCompanion. 如果您将签名更改为:

def createResponseFromJson[A <: scalapb.GeneratedMessage with scalapb.Message[A]
     : GeneratedMessageCompanion](protoJsonFile: String): A
于 2018-06-04T00:05:47.353 回答