Skip to content

Instantly share code, notes, and snippets.

@rsimon
Last active January 30, 2018 08:13
Show Gist options
  • Save rsimon/f5a517e57e32e6ffa8317b50eda162c1 to your computer and use it in GitHub Desktop.
Save rsimon/f5a517e57e32e6ffa8317b50eda162c1 to your computer and use it in GitHub Desktop.
Play JSON Serialization and Trait Methods
// Trait that adds the 'computeSum' method
trait HasSum {
val a: Int
val b: Int
def computeSum() = a + b
}
// Generic serialization for classes inheriting the HasSum trait
trait HasSumWrites {
implicit def hasSumWrites[T <: HasSum](implicit w: Writes[T]): Writes[T] = (
(JsPath).write[T] and
(JsPath \ "sum").write[Int]
)(t => (t, t.computeSum()))
}
// Two example case classes extending HasSum
case class Foo(propertyA: String, a: Int, b: Int) extends HasSum
case class Bar(propertyB: String, a: Int, b: Int) extends HasSum
// Their companions, explicitely defining a serialization based on that of HasSumWrites
object Foo extends HasSumWrites {
implicit val fooWrites = hasSumWrites(Json.writes[Foo])
}
object Bar extends HasSumWrites {
implicit val barWrites = hasSumWrites(Json.writes[Bar])
}
// Example
val foo = Foo("some value", 1, 2)
val bar = Bar("some other value", 4, 5)
println(Json.toJson[Foo](foo).toString)
println(Json.toJson[Bar](bar).toString)
// Returns
// {"propertyA":"some value","a":1,"b":2,"sum":3}
// {"propertyB":"some other value","a":4,"b":5,"sum":9}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment