spray is an open-source toolkit for building REST/HTTP-based integration layers on top of Scala and Akka.
I have this case class case class Person(val name: String) object JsonImplicits extends DefaultJsonProtocol { implicit val impPerson = jsonFormat1(Person) } …
scala akka implicit-conversion sprayI need to make a simple HTTP request using spray framework. I found some examples on their web site but …
json scala sprayI need to expose a Spray service that accepts JSON payload. Where can I find a sample that would demonstrate …
scala spray spray-jsonI'm trying (and failing) to get my head around how spray-json converts json feeds into objects. If I have a …
scala spray spray-jsonI haven't found a solid example or structure to splitting up Spray.io routes into multiple files. I am finding …
scala sprayMy spray json support looks like this object MarshallingSupport extends SprayJsonSupport { implicit def json4sFormats: Formats = DefaultFormats } And in my …
scala akka spray spray-json akka-httpI'm thinking about how should be the process to deploy my already locally tested rest api to the cloud, lets …
scala akka sprayI'm using spray-json to marshal lists of custom objects into JSON. I have the following case class and its JsonProtocol. …
scala scala-2.10 spray spray-jsonI'm trying to reprocude this or this, but I keep getting an error I am not able to fix... First …
scala spray spray-json