The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
30 views

How do I turn all rejections into custom json in spray?

When spray (spray.io) produces a rejection, it responds with a string body. Since all my API clients will assume that my API only returns json, I'd like globally make every rejection a valid json ...
0
votes
1answer
94 views

Convert polymorphic case classes to json and back

I am trying to use spray-json in scala to recognize the choice between Ec2Provider and OpenstackProvider when converting to Json and back. I would like to be able to give choices in "Provider", and if ...
0
votes
1answer
40 views

NPE in spray-json because of recursive implicits (context bound issue?)

Perhaps I discovered a bug in spray-json. I get Null Pointer Exception when I'm trying to get json of an object that has field of type of itself. Example is: case class TestItem(subitems: ...
0
votes
1answer
44 views

How can provide JsonFormats for case class that references itself?

How can provide JsonFormats for case class that references itself ? I'm following this guideline and wrote following code case class Item(name: String, desc: Option[String], prices: Array[String], ...
0
votes
1answer
119 views

Expose a REST service with spray which consumes applicationType.JSON

After bit of struggle with sbt and idea setting, I have spray running in my intellij successfully with scala 2.10. Now I have my sample services running fine. But confusion is I need to expose a ...
1
vote
2answers
68 views

What is a good way to handle default values with spray-json

In some cases default values make more sense than optionals in case classes: case class Car(numberOfWheels:Int = 4, color:String) case class Car(numbeOfWheels:Option[Int], color:String) //silly In ...
1
vote
1answer
173 views

Howto test Custom Json Objects with Spray Routing

I'm creating a Rest API with spray-routing on top of mongodb for some CRUD operations, this all works fine, expect whenever I try to test it with specs2 the following specification class ...
2
votes
1answer
229 views

Can't convert unicode symbols to cyrillic

I have a bunch of documents persisted in Apache Lucene with some names in russian, and when I'm trying to print them out it looks like this "\u0410\u0441\u043f\u0430\u0440", but not in cyrillic ...
0
votes
1answer
193 views

Could not find implicit Marshaller in Spray.io when using Jackson

I have a Spray.io directive that handles a POST and I want to use Jerkson (scala interface for Jackson) to parse the incoming JSON into the appropriate class. post { path("") { ...
0
votes
0answers
168 views

Using spray-json marshallers inside a generic routes function

I'm writing a REST service using Spray. Several of the routes I have follow an identical pattern (GET /foos, POST /foos, GET /foos/:id etc), so I'd like to factor those routes out into a generic ...
4
votes
1answer
288 views

Scala type class pattern and generic methods

I'm trying to write a generic extractor for parsing json POST body using spray and spray-json. However I'm struggling to get it working with more than one model. Here's the case statement in the ...
2
votes
1answer
241 views

Implicit parameter resolution from surrounding scope

I'm not a fan of bringing implicit parameters into my code so where I use them I want to encapsulate their use. So I am trying to define an object that both wraps up calls to spray-json with exception ...
1
vote
1answer
111 views

How can I wrap a generic method around a generic method in scala?

I'm trying to wrap the spray-json parser such that it returns an Option rather than throws an exception. As a first step I'm just trying to wrap the method with my own, but I'm having problems ...
0
votes
0answers
98 views

Write implicits for polymophic list with spray-json

I haven't seen it on the readme. So how do you write implicit for abstract type that are meant to be inherited. By example a List of Animals where an Animal could be a Dog or a Cat.
3
votes
2answers
867 views

How to represent optional fields in spray-json?

I have an optional field on my requests: case class SearchRequest(url: String, nextAt: Option[Date]) My protocol is: object SearchRequestJsonProtocol extends DefaultJsonProtocol { implicit val ...