使用 Spray Json 解析超过 22 个字段而没有嵌套 类

Parsing more than 22 fields with Spray Json without nesting case classes

我正在尝试使用 Spray-JSON 来编组具有超过 22 个字段的传入 JSON。由于没有 JsonFormat23() 方法,我不得不嵌套我的案例 类 以绕过限制。但是,传入JSON不知道嵌套结构

有没有办法避免在 Spray 中使用嵌套结构Json?

编辑

这是我的解决方案,以免其他人有同样的痛苦。我的一个问题是我所有的字段都是可选的,这增加了另一层复杂性。您可以在此解决方案中放置任意数量的字段

    implicit object myFormat extends RootJsonFormat[myFormat] {
        override def write(js : myFormat):JsValue =
          JsObject(
            List(
              Some("language" -> js.language.toJson),
              Some("author" -> js.author.toJson),
                ....
            ).flatten: _*
          )

        override def read(json: JsValue):myFormat= {
          val fieldNames = Array("language", ... , "author")

          val jsObject = json.asJsObject
          jsObject.getFields(fieldNames:_*)

          // code to transform fields to case class

          // Initializes class with list of parameters
          myFormat.getClass.getMethods.find(x => x.getName == "apply" && x.isBridge)
            .get.invoke(myFormat, mylist map (_.asInstanceOf[AnyRef]): _*).asInstanceOf[myFormat]

        }
    }

您可以按照 here 所述实施 RootJsonFormat 以解决 Tupple22Function22 限制。如果 classes 不再存在 22 参数的限制(注意事项),因此您可以保持 class 结构平坦。在实现 RootJsonFormat 时,您甚至不必使用 case class 作为目标反序列化类型,它可以是常规的 class。

请注意,即使您可以将 JSON 解析为一个案例 class,您的代码中可能还会遇到 22 的其他限制。有关说明,请参阅 this。 例如,您得到了案例 class,现在想将其保存到数据库,如果没有自定义序列化程序,您的数据库框架将无法解决 22 参数限制。在那种情况下,转换为嵌套大小写 classes 可能会更简单。

在 Dotty 中,22 的限制将完全 gone,但这需要一些时间:

The limit of 22 for the maximal number of parameters of function types has been dropped. Functions can now have an arbitrary number of parameters. Functions beyond Function22 are represented with a new trait scala.FunctionXXL.

The limit of 22 for the size of tuples is about to be dropped. Tuples will in the future be represented by an HList-like structure which can be arbitrarily large.