0
votes
0answers
26 views

Play 2.1(scala) - How to write Format[T] for scala enumeration case class

This question is related to the following two questions. We wanted to use enumeration in a model in our play 2.1 application so we found the following question How to write Reads[T] and Writes[T] in ...
0
votes
1answer
18 views

play, scala and jerkson noClassDefFound error

I am trying to work with jerkson in play and with scala 2.10. However, i want to load data fixtures based on a json files. for this prcoedure I'm trying to load the json with the "parse" command from ...
0
votes
1answer
65 views

Play 2.1 Scala JSON parsing harder than Jerkson?

With Jerkson, I was able to parse a String containing a JSON array, like this: com.codahale.jerkson.Json.parse[Array[Credentials]](contents) where contents was a String containing the following: ...
0
votes
0answers
29 views

Lift-json for Scala 2.9.2

I downloaded the lift-json jar file and included it in the project. I wrote a sample function like below import net.liftweb.json._ def test() { val json = List(1, 2, 3) ...
0
votes
1answer
48 views

Serialize single variable of an object into a single value using json Writes in Play 2.1

I am using Play 2.1.1 with Scala. I want to be able to serialize an object into a single value so that I can toss them into a list and have it output an array of this object. I only want it to output ...
0
votes
1answer
40 views

Inputting JsonObject to view Play framework / Scala

I am trying to take JsonObject as input to my project which i am using play framework with scala @(name: String,tracks :Iterator[String],Track_Json:JsObject) I guess i have to input it this way but ...
0
votes
1answer
66 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
34 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], ...
1
vote
3answers
97 views

Scala object to Json Formatter using combinators

I have implemented a class following Scala documentation case class Creature( name: String, isDead: Boolean, weight: Float, dob: java.sql.Date ) import play.api.libs.json._ import ...
1
vote
2answers
94 views

Play 2.1 Json serialization of traits

The experimental "Inception" feature in Play 2.1 (Json.format[...]) only works for case classes (see here). How can I write my custom format implicit for a trait. I have the following construct: ...
0
votes
1answer
86 views

Play 2.1 Json array to List[String]

I want to parse a json string similar to: "tags": [ { "id": 1, "tag": "Foo" }, { "id": 2, "tag": "Bar" ...
1
vote
3answers
102 views

How do you create Json object with values of different types?

How do you create Json object with values of different types ? I'm using spray-json Here is the code val images : List[JsObject] = fetchImageUrls(url).map((url: String) => { JsObject(List( ...
2
votes
2answers
82 views

I need advice on Play's Json and elegant Option handling in the Writes trait

I have a "style" or "effective scala" type of question here: I have a "FeatureCheck" class which I need to serialize into a Json in Play framework. case class FeatureCheck(val result: ...
0
votes
2answers
109 views

Iterating over an array in JSON with Play 2.1.1

I am using play 2.1.1 and I am having issues iterating through an array. I had read somewhere that you can create a reads for a List[Object] but everytime I try to do this I get an error "No unapply ...
0
votes
1answer
71 views

Writing custom serializer for Json4s

Since Json4s come with Map serialization only when the key is a String, I am trying to write my custom serializers for a specific Map with Java enums as key. class HistoricalRecordCustomSerializer ...
0
votes
1answer
109 views

scala playframework json implicit case class conversion

I am developing my first Play 2.1 application in Scala. The task I am trying to accomplish is to parse json into 3 different case classes. The problem is - I do not know where to declare all case ...
0
votes
1answer
255 views

Play Framework Json Object mapping partial objects

Another Play Framework 2.1 question as the documentation is too techie for me to wrap my head around. If I have a scala case class object that represents something, say a server: case class ...
0
votes
0answers
35 views

Scala sending a POST call with Array[String] (JSon)

I am sending a POST call to an API which expects a string (query), and an Array[String]. This has to be in JSon format. Example: { "script": "blah blah blah", "ingestions": [ ...
0
votes
0answers
69 views

Scala iterate through Jackson 2 JsonNode elements?

Right now trying to iterate through a Jackson JsonNode tree. I would have liked to use case classes but unable to since there's an issue with Scala's BoxedUnit. Here's some sample code, the compiler ...
0
votes
1answer
230 views

Play Framework 2.1.1 Json Writes nested objects

I've been trying to get my head around this all afternoon to no avail, Play 2.1.1 overhauled how the Json reads and writes work. Basically I have a wrapper object that looks like: case class ...
0
votes
1answer
72 views

Converting nested lists to json gives superfluous arrays

I have some history data, that I want to convert to json. So these are Lists of lists. Their type is List[List[Position]] where Position is a simple case class. I wrote a formatter to help Json.toJson ...
0
votes
1answer
69 views

Play JSON optional transformer

I am using Play 2.1 JSON Reads to achieve a conditional transformation. I have a json object and I want to transform an optional field removing \n chars.The problem is that if I remove the content ...
0
votes
1answer
171 views

Handle multidimensional JSON with scala Play framework

I am trying to send data from the client to the server using a JSON request. The body of the JSON request looks like this: [ [ {"x":"0","y":"0","player":0}, {"x":"0","y":"1","player":0}, ...
0
votes
1answer
199 views

Jackson scala module: serialize Enumeration fails

Can someone explain me why this doesn't work? I use the Scala module with Jackson. My dependency is "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.1.3" My serializer is: import ...
0
votes
2answers
121 views

pattern match any into a list

I get the following as a result from using the scala json parse. import scala.util.parsing.json.JSON._ val j: String = """["this",["a","b",["c","d"]]]""" val parse_test=parseFull(j) now from this I ...
0
votes
1answer
80 views

using jerkson in scala for list of lists

I have the following, and want to use jerkson in scala, but am having issues with this. I'm sure this is a very amateur error, but was hoping to get some help from here. scala> val ...
1
vote
0answers
64 views

Class file needed by ExtraImplicits in json spray lenses is missing

I am trying to compile a scala class related to the json spray. Following error message is a bit mystifying to me: error: class file needed by ExtraImplicits is missing. reference type JsValue of ...
1
vote
1answer
100 views

Combine JSON Reads in Play 2.1

I have 2 reads. One is user. User is a subset of the main read called Registration. { user: { id: "35fc8ba5-56c3-4ebe-9a21-489a1a207d2e", username: "flastname", first_name: "FirstName", ...
1
vote
1answer
68 views

type mismatch error when creating Reads for Play 2.1

I have been playing with this for hours. I have been trying different methods of creating a read and I am just completely stumped. I am on Play 2.1.0 and Scala 2.10.1 ERROR: type mismatch; found : ...
0
votes
1answer
89 views

Error working with JSON in Play 2

I am trying to serialize / deserialize using JSON and the Play Framework 2.1.0 and Scala 2.10. I am using Anorm, and I have a pretty simple Object that I want to store in a database. The Order is ...
0
votes
0answers
81 views

Recursive JSON Path in Reads of play2 framework

I am trying to parse a JSon Object with an undisclosed number of objects of type service of which i want to take their names as a recursive path to a object as a List. implicit val collabReads: ...
1
vote
1answer
125 views

Playframework Scala Specs2 JSON Matchers

I'm using the Play! framework and trying to work with JSON response messages in Specs2 tests with no success. What I am trying to do is assert key->value pairs in a JsValue like in the example below ...
0
votes
2answers
98 views

How do I define json writer for custom object in Play + Scala?

Could you please demostrate how I can define json writer for my class in Scala and Play Framework 2.1-RC2 ? The documentation is quite confusing (and will be significant obstacle for wider adoption ...
0
votes
1answer
152 views

Foreach with JSON Arrays in Play2 and Scala

"people": [ { "name": "Jack", "age": 15 }, { "name": "Tony", "age": 23 }, { "name": "Mike", "age": 19 } ] Thats a sample of the json i'm trying to parse through. I want to be ...
0
votes
1answer
75 views

Strings maintaining leading and trailing quotes from JSON when using Jerkson

JSON in question: { "search_id": "", "type": "Search.filter", "query": "bar,club", "params": { "search_id": "", "user_id": "", "client": "ios", "lat": 40.73199375351, "lon": ...
1
vote
1answer
89 views

Play JSON: How to use string as proper json

val json = JsObject(Seq( "type" -> toJson("filter"), "params" -> toJson(fP.parseToJson()) )).toString() fP.parseToJson() produces a json string which is used in other ...
2
votes
1answer
63 views

Rapid structured data-to-text in Scala: JSON or XML, and which?

I have vast amounts of data that, once lightly processed, I would like to store in a marginally readable ASCII format. Because of the volume of data, the speed of input and output is extremely ...
0
votes
2answers
195 views

Convert scala list to Json object

I want to convert a scala list of strings, List[String], to an Json object. For each string in my list I want to add it to my Json object. So that it would look like something like this: { ...
0
votes
1answer
127 views

Create implicit json read for List collection which might be missing from input json

I am following play-salat (github.com/leon/play-salat) to create a model for a json input and save to mongodb. How can I create the implicit json read for List collection which might be missing in the ...
0
votes
1answer
148 views

How to write Reads[T] and Writes[T] in scala Enumeration (play framework 2.1)

I'm a little bit lost with the new ScalaJson Feature in Play Framework 2.1. I would like to write Reads and Writes in my Enumeration. Here is my code : object EnumA extends Enumeration { type ...
2
votes
4answers
167 views

Json library for scala / java

I'm looking for a good json library. I already experienced with lift's json library but wasn't satisfies.. Also saw Play's json library and it looks good, but I don't feel comfortable with mixing ...
0
votes
2answers
159 views

Play2.1 JSON Format with Empty String Validation

I am attempting to validate JSON when unmarshalling to an object in Play2.1. The Format object I have defined only validates when a field is absent in the JSON, but I want to validate that fields are ...
0
votes
1answer
58 views

map scala class on json reads method

Hello I'm trying to implement this method : override def reads(json: JsValue): JsSuccess[Data] = JsSuccess( new Data( (json \ "title").as[String], (json \ "User").as[User] ) ) ...
0
votes
1answer
87 views

overriding method read in trait Reads.

I'm implementig this User.scala class class User(var id : Long , var name : String) { def createUser() = {} def setName(nome : String) : String = { this.name = nome return name } def ...
0
votes
1answer
121 views

GSON with Scala: Scala scala.collection.mutable.HashMap vs. java.util.HashMap

I am using Scala 2.10 with the latest version of GSON. I want to deserialize a JSON String into a scala.collection.mutable.HashMap. But the value of map is empty, only a HashMapwith a ...
0
votes
1answer
126 views

GSON with Scala - Unable to invoke no-args constructor for scala.collection.immutable.Map

Here is a sample Scala object in which I want to deserialize a JSON String to a Map of String -> String. I use GSON 2.2.2 and Scala 2.10. import com.google.gson.Gson import ...
1
vote
1answer
195 views

How do I serialize CharSequence to JSON with Play 2.1 and Scala

I'm having trouble serializing a class that uses CharSequence instead of String. When I use Strings everything works fine. I have the following class: case class Word(word: CharSequence, ...
1
vote
0answers
140 views

JSON parsing with Play: why is a list being parsed this way?

Here is a JSON list I want to process: scala> jsonStructure \ "response" \ "docs" res4: play.api.libs.json.JsValue = [{"title":"the very first document"},{"title":"on brick walls"}] I tried ...
1
vote
1answer
121 views

How to convert an anonymous class to json?

I have the following code: def test = Action { val Anon = new { val foo = "foo" val bar = "bar" } Ok(Json.toJson(Anon)) } And I get this compilation error: No Json deserializer ...
0
votes
1answer
243 views

Scala Play 2: action composition and BodyParser

I'm using action composition for authentication and to avoid passing common parameters in each action. My question is how can I combine it the BodyParser parse.json, like in the method below? def ...

1 2 3 4 5