- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试列出具有共同特征的项目列表,并将它们与 Json 相互转换。我在这里展示的例子是一列带有引擎和汽车的火车。创建火车分为三个类:Engines、Passenger Cars 和 Freight Cars。 (我认为一个简单的基于现实的例子最容易理解,它也没有我试图解决的问题那么复杂。)
火车的部分定义如下:
package models
sealed trait Vehicle {
val kind: String
val maxSpeed: Int = 0
def load: Int
}
case class Engine(override val maxSpeed: Int, val kind: String,
val power: Float, val range: Int) extends Vehicle {
override val load: Int = 0
}
case class FreightCar(override val maxSpeed: Int, val kind: String,
val load: Int) extends Vehicle {}
case class PassengerCar(override val maxSpeed: Int, val kind: String,
val passengerCount: Int) extends Vehicle {
override def load: Int = passengerCount * 80
}
package models
import scala.collection.mutable
import play.api.Logger
import play.api.libs.json._
case class Train(val name: String, val cars: List[Vehicle]) {
def totalLoad: Int = cars.map(_.load).sum
def maxSpeed: Int = cars.map(_.maxSpeed).min
}
object Train {
def save(train: Train) {
Logger.info("Train saved ~ Name: " + train.name)
}
}
package controllers
import play.api.mvc._
import play.api.libs.json._
import play.api.libs.json.Reads._
import play.api.data.validation.ValidationError
import play.api.libs.functional.syntax._
import models.Vehicle
import models.Engine
import models.FreightCar
import models.PassengerCar
import models.Train
class Trains extends Controller {
implicit val JsPathWrites = Writes[JsPath](p => JsString(p.toString))
implicit val ValidationErrorWrites =
Writes[ValidationError](e => JsString(e.message))
implicit val jsonValidateErrorWrites = (
(JsPath \ "path").write[JsPath] and
(JsPath \ "errors").write[Seq[ValidationError]]
tupled
)
implicit object engineLoadWrites extends Writes[Engine] {
def writes(e: Engine) = Json.obj(
"maxSpeed" -> Json.toJson(e.maxSpeed),
"kind" -> Json.toJson(e.kind),
"power" -> Json.toJson(e.power),
"range" -> Json.toJson(e.range)
)
}
implicit object freightCarLoadWrites extends Writes[FreightCar] {
def writes(fc: FreightCar) = Json.obj(
"maxSpeed" -> Json.toJson(fc.maxSpeed),
"kind" -> Json.toJson(fc.kind),
"load" -> Json.toJson(fc.load)
)
}
implicit object passengerCarLoadWrites extends Writes[PassengerCar] {
def writes(pc: PassengerCar) = Json.obj(
"maxSpeed" -> Json.toJson(pc.maxSpeed),
"kind" -> Json.toJson(pc.kind),
"passengerCount" -> Json.toJson(pc.passengerCount)
)
}
implicit object trainWrites extends Writes[Train] {
def writes(t: Train) = Json.obj(
"name" -> Json.toJson(t.name),
"cars" -> Json.toJson(t.cars) // Definitely not correct!
)
}
/* --- Writes above, Reads below --- */
implicit val engineReads: Reads[Engine] = (
(JsPath \ "maxSpeed").read[Int] and
(JsPath \ "kind").read[String] and
(JsPath \ "power").read[Float] and
(JsPath \ "range").read[Int]
)(Engine.apply _)
implicit val freightCarReads: Reads[FreightCar] = (
(JsPath \ "maxSpeed").read[Int] and
(JsPath \ "kind").read[String] and
(JsPath \ "load").read[Int]
)(FreightCar.apply _)
implicit val passengerCarReads: Reads[PassengerCar] = (
(JsPath \ "maxSpeed").read[Int] and
(JsPath \ "kind").read[String] and
(JsPath \ "passengerCount").read[Int]
)(PassengerCar.apply _)
implicit val joistReads: Reads[Train] = (
(JsPath \ "name").read[String](minLength[String](2)) and
(JsPath \ "cars").read[List[Cars]] // Definitely not correct!
)(Train.apply _)
/**
* Validates a JSON representation of a Train.
*/
def save = Action(parse.json) { implicit request =>
val json = request.body
json.validate[Train].fold(
valid = { train =>
Train.save(train)
Ok("Saved")
},
invalid = {
errors => BadRequest(Json.toJson(errors))
}
)
}
}
implicit object trainWrites extends Writes[Train] {
def writes(t: Train) = Json.obj(
"name" -> Json.toJson(t.name),
"cars" -> Json.toJson(t.cars)
)
}
最佳答案
运行您的Writes
代码返回以下错误(它提供了有关修复内容的线索):
Error:(78, 27) No Json deserializer found for type Seq[A$A90.this.Vehicle]. Try to implement an implicit Writes or Format for this type.
"cars" -> Json.toJson(t.cars) // Definitely not correct!
^
Vehicle
的解串器,所以你需要添加一个
Reads/Writes
(或
Format
)对于
Vehicle
.这只会委托(delegate)给实际的
Format
对于类型。
writes
的实现非常简单。 ,可以只对类型进行模式匹配。对于
reads
我正在寻找 json 中的一个显着属性来指示
Reads
委托(delegate)给。
Note that
play-json
provides helpers so you don't have to manually implementWrites/Reads
for case classes, so you can writeval engineLoadWrites : Writes[Engine] = Json.writes[Engine]
. This is used in the sample below.
//Question code above, then ...
val engineFormat = Json.format[Engine]
val freightCarFormat = Json.format[FreightCar]
val passengerCarFormat = Json.format[PassengerCar]
implicit val vehicleFormat = new Format[Vehicle]{
override def writes(o: Vehicle): JsValue = {
o match {
case e : Engine => engineFormat.writes(e)
case fc : FreightCar => freightCarFormat.writes(fc)
case pc : PassengerCar => passengerCarFormat.writes(pc)
}
}
override def reads(json: JsValue): JsResult[Vehicle] = {
(json \ "power").asOpt[Int].map{ _ =>
engineFormat.reads(json)
}.orElse{
(json \ "passengerCount").asOpt[Int].map{ _ =>
passengerCarFormat.reads(json)
}
}.getOrElse{
//fallback to FreightCar
freightCarFormat.reads(json)
}
}
}
implicit val trainFormat = Json.format[Train]
val myTrain = Train(
"test",
List(
Engine(100, "e-1", 1.0.toFloat, 100),
FreightCar(100, "f-1", 20),
PassengerCar(100, "pc", 10)
)
)
val myTrainJson = trainFormat.writes(myTrain)
/** => myTrainJson: play.api.libs.json.JsObject = {"name":"test","cars":[{"maxSpeed":100,"kind":"e-1","power":1.0,"range":100},{"maxSpeed":100,"kind":"f-1","load":20},{"maxSpeed":100,"kind":"pc","passengerCount":10}]} */
val myTrainTwo = myTrainJson.as[Train]
/* => myTrainTwo: Train = Train(test,List(Engine(100,e-1,1.0,100), FreightCar(100,f-1,20), PassengerCar(100,pc,10))) */
关于json - 在 Play for Scala 中将异构列表与 Json 相互转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35397766/
我有一些 Scala 代码,它用两个不同版本的类型参数化函数做了一些漂亮的事情。我已经从我的应用程序中简化了很多,但最后我的代码充满了形式 w(f[Int],f[Double]) 的调用。哪里w()是
如果我在同一目录中有两个单独的未编译的 scala 文件: // hello.scala object hello { def world() = println("hello world") }
val schema = df.schema val x = df.flatMap(r => (0 until schema.length).map { idx => ((idx, r.g
环境: Play 2.3.0/Scala 2.11.1/IntelliJ 13.1 我使用 Typesafe Activator 1.2.1 用 Scala 2.11.1 创建一个新项目。项目创建好后
我只是想知道如何使用我自己的类扩展 Scala 控制台和“脚本”运行程序,以便我可以通过使用实际的 Scala 语言与其通信来实际使用我的代码?我应将 jar 放在哪里,以便无需临时配置即可从每个 S
我已经根据 README.md 文件安装了 ensime,但是,我在低级 ensime-server 缓冲区中出现以下错误: 信息: fatal error :scala.tools.nsc.Miss
我正在阅读《Scala 编程》一书。在书中,它说“一个函数文字被编译成一个类,当在运行时实例化时它是一个函数值”。并且它提到“函数值是对象,因此您可以根据需要将它们存储在变量中”。 所以我尝试检查函数
我有 hello world scala native 应用程序,想对此应用程序运行小型 scala 测试我使用通常的测试命令,但它抛出异常: NativeMain.scala object Nati
有few resources在网络上,在编写与代码模式匹配的 Scala 编译器插件方面很有指导意义,但这些对生成代码(构建符号树)没有帮助。我应该从哪里开始弄清楚如何做到这一点? (如果有比手动构建
我是 Scala 的新手。但是,我用 创建了一个中等大小的程序。斯卡拉 2.9.0 .现在我想使用一个仅适用于 的开源库斯卡拉 2.7.7 . 是吗可能 在我的 Scala 2.9.0 程序中使用这个
有没有办法在 Scala 2.11 中使用 scala-pickling? 我在 sonatype 存储库中尝试了唯一的 scala-pickling_2.11 工件,但它似乎不起作用。我收到消息:
这与命令行编译器选项无关。如何以编程方式获取代码内的 Scala 版本? 或者,Eclipse Scala 插件 v2 在哪里存储 scalac 的路径? 最佳答案 这无需访问 scala-compi
我正在阅读《Scala 编程》一书,并在第 6 章中的类 Rational 实现中遇到了一些问题。 这是我的 Rational 类的初始版本(基于本书) class Rational(numerato
我是 Scala 新手,我正在尝试开发一个使用自定义库的小项目。我在库内创建了一个mysql连接池。这是我的库的build.sbt organization := "com.learn" name :
我正在尝试运行一些 Scala 代码,只是暂时打印出“Hello”,但我希望在 SBT 项目中编译 Scala 代码之前运行 Scala 代码。我发现在 build.sbt 中有以下工作。 compi
Here链接到 maven Scala 插件使用。但没有提到它使用的究竟是什么 Scala 版本。我创建了具有以下配置的 Maven Scala 项目: org.scala-tools
我对 Scala 还很陌生,请多多包涵。我有一堆包裹在一个大数组中的 future 。 future 已经完成了查看几 TB 数据的辛勤工作,在我的应用程序结束时,我想总结上述 future 的所有结
我有一个 scala 宏,它依赖于通过包含其位置的静态字符串指定的任意 xml 文件。 def myMacro(path: String) = macro myMacroImpl def myMacr
这是我的功能: def sumOfSquaresOfOdd(in: Seq[Int]): Int = { in.filter(_%2==1).map(_*_).reduce(_+_) } 为什么我
这个问题在这里已经有了答案: Calculating the difference between two Java date instances (45 个答案) 关闭 5 年前。 所以我有一个这
我是一名优秀的程序员,十分优秀!