Jackson JSON processor, a Java library for handling JSON tasks like reading and writing (parsing / generating) and data binding to/from Java objects.

learn more… | top users | synonyms

0
votes
0answers
6 views

Marshalling java Lists with JAXB / JSON for jqGrid using Jettison or Jackson

I am implementing a generic java POJO wrapper for jqGrid consumption, using JAXB and JSON. This is a CXF service so my marshaller libraries of choice are either Jettison or Jackson: ...
0
votes
0answers
15 views

Dynamically enable/disable he UNWRAP_ROOT_VALUE and WRAP_ROOT_VALUE in Jackson's ObjectMapper?

Is there a way to enable/disable the UNWRAP_ROOT_VALUE and WRAP_ROOT_VALUE in Jackson's ObjectMapper dynamically. I have to enable/disable these properties depending on what service is called, some ...
0
votes
0answers
11 views

Jackson JSON - @JsonProperty overriding @JsonView?

I have the following class: class Bean { private int x; private int y; public Bean(int x, int y) { this.x = x; this.y = y; } @JsonProperty("x") ...
0
votes
0answers
28 views

Adding jars in build path shows project error

I added the jackson jars files in the projects libs folder it didn't worked. And I added them to lib folder and added to build path. The source code worked but still showing some red ! mark on the ...
0
votes
0answers
18 views

Jackson Polymorphism and @JsonTypeInfo usage

Based on the following JSON: { "items": [ { "post_id": 17168289, "count": 190 } ] } And: { "items": [ { "tag_id": 17168289, "count": 190 } ] } I want to ...
0
votes
1answer
30 views

How to define string name as class in java

I am using Jackson parser for JSON parsing in android app. The JSON data is in following form data: { train_number: "12951", chart_prepared: false, class: "2A" } How to parse property with class ...
0
votes
0answers
31 views

Json; jackson cycle handling, put objectID in json

I have a Parent and a Child class. I use jackson 1.9.9 (if it's nessesery, I can use another version of jackson, but it have to be jackson) I managed to solve the cycle when I need to convert Parent ...
0
votes
0answers
21 views

Getting objectmapper for config serialization deserialization

I have a rest service, and I would like to use views, as I read it on this page: http://techtraits.com/Programming/2011/08/12/implementing-jackson-views/ My REST service have this function: @GET ...
0
votes
1answer
48 views

Looking for a good example of polymorphic serialization deserialization using jackson with scala

Looking for a good example of polymorphic serialization deserialization using jackson with scala got an exception : Exception in thread "main" Blockquote ...
1
vote
1answer
40 views

NoSuchMessageException when using a custom message converter along formatters

I'm using Spring 3.2 M1 and Hibernate 3. I was working with formatters to format POJOs (which happen to be Hibernate mapping entities) to their string representation. This was very convenient as it ...
0
votes
1answer
20 views

Jackson - Cannot deserialize list of strings

On both sides I have: Class ListWrapper { public List<String> l; ListWrapper(List<String> l) { this.l = l; } } On the client side I have: ObjectMapper mapper = ...
1
vote
0answers
31 views

Jackson 2.2.2 ObjectMapper date format doesn't work for Joda DateTime

In my project I have following ObjectMapper class: public class ObjectMapperImpl extends ObjectMapper { public ObjectMapperImpl() { super(); ...
0
votes
0answers
19 views

Error in Jackson.jar when running proguard in android

I have an android project that uses jackson-all-1.7.2.jar. When I run a proguard with this proguard.cfg file: -keep class com.actionbarsherlock.** {*;} -keep class org.holoeverywhere.** {*;} ...
0
votes
0answers
18 views

How to overwrite type information when serializing objects with jackson?

I'm currently trying to serialize data that I've previously loaded via Hibernate. To recover type information I enabled default typing like this: ...
0
votes
1answer
32 views

Jackson and empty string

I have the following code: import javax.xml.datatype.XMLGregorianCalendar; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.SerializationFeature; ...
0
votes
1answer
13 views

How to leverage object transformation in Jersey?

I have annotated my POJOs in Jersey and I have test methods like this one: @POST @Path("/test/pojo/transformation") @Consumes(MediaType.APPLICATION_JSON) @Produces(MediaType.APPLICATION_XML) public ...
1
vote
1answer
39 views

Parse the JSON in spring?

I know it is a simple question .But I can't find a answer. How to parse this Jquery ajax. My Jquery ajax success response will be, {"status" : "ready"}; Help me to do this.
1
vote
0answers
19 views

Generating placeholder abstract class's extended class json schema

Facing some problem with Swagger generated Json schema. I have a one base class which of type abstract class. And two classes extends this base class. And main transfer object object contains ...
1
vote
0answers
39 views

Prevent Jackson from serializing a float as a double

Jackson seems to be coercing all floats into doubles in any data structure that I am trying to serialize into JSON. Is there any way to avoid this behavior? Float f = 50.1f; System.out.println(f); ...
1
vote
2answers
43 views

Jackson List Help - Java

I am trying to create some xml with Jackson and I cannot get the list to display like I need. I am getting: <Messages> <Messages>...</Messages> ...
0
votes
1answer
21 views

Jackson JSON Prefixing

I'm currently using RestEasy(2.3.6) with Jackson(1.9.9) and needing to prefix my JSON arrays with '{} &&' in order to prevent JSON hijacking. I'm new to Jackson and am having a really hard ...
0
votes
0answers
17 views

Spring App : Jersey Deserialization issue

My application is 3.2.0 Spring app. I am using Jersey Rest client (1.12) that calls a REST API,lets' call it getTree API (Json Jackson output), of another application getTree API returns a Tree ...
1
vote
0answers
25 views

Geojson using Jackson and Java

Does anyone know where I can find good examples of opening a geojson file and reading it using the Jackson library? I cannot create a class to serialize was we are dealing with several different ...
0
votes
1answer
28 views

Deserialize JSON property in Jackson

I have a JSON file as such: { "id1" : { ... }, "id2" : { ... } } I am using mapper.readerForUpdating(object).readValue(jsonFile) and want the reader to read only the ...
0
votes
2answers
27 views

Is there a way to specify @JsonTypeIdResolver on mapper config instead of annotation?

Is there a way to specify @JsonTypeIdResolver on mapper config instead of annotating the target class ? example, instead of : @JsonTypeInfo( use = JsonTypeInfo.Id.CUSTOM, include = ...
1
vote
0answers
11 views

Conflict between packages com.fasterxml.jackson.databind.jsonschema and com.fasterxml.jackson.databind.jsonSchema

I have a problem incorporating both the jackson-module-jsonSchema-2.1.0.jar and jackson-databind-2.1.5.jar libraries into my project. I'm using Eclipse on Windows and I have created a new "Plug-in ...
3
votes
1answer
33 views

Jackson: Override primitive type deserialization?

We need to process some broken JSON from a legacy server here that wrongly encodes null values as literal "null" strings in its output. I already found that I probably want to override ...
0
votes
0answers
11 views

Best way to use JsonNode read tree for traversing json unmapped object

I did the mistake of builing an entire HTML5 app using json for data, then after that, create a java (had too) and find a java librairie for json. I didn't map any Java Object and now it's to long to ...
0
votes
1answer
42 views

Jackson 2.1.0 object serialize with JsonIgnore,JsonProperty and dynamic filter

I have an object which have several annotations: @JsonInclude(Include.NON_DEFAULT) , @JsonIgnoreand@JsonProperty("BLA BLA")` I need to serialize my object while ignoring fields that their value is ...
0
votes
2answers
36 views

Using Jackson to parse Json map value into String or CustomClass

I'm being given a Json file with the form: { "descriptions": { "desc1": "someString", "desc2": {"name":"someName", "val": 7.0} } } I have the POJO: public class CustomClass ...
0
votes
1answer
36 views

Spring MVC: Applying different JSON serializer for different annotated controller method

I'm creating a REST service using annotated controllers and the content negotiation (@ResponceBody). I have two different controller methods returning instance of {{Foo}} that serves different use ...
0
votes
2answers
51 views

How to convert Json String to java Bean with generics using jackson

class A<T extends Animal>{ @XmlElement T animal; } @XmlRootElement(name="animal") class Animal{ } //@XmlRootElement(name="Birds") class Birds extends Animal{ ArrayList<String> ...
0
votes
1answer
27 views

Extra Brace surrounding json causing parse issue

I am creating json with the below function. However the json has an extra brace before it and after it. This is causing an issue when I am combining it with other json. When I use json lint to ...
1
vote
1answer
48 views

Make Jackson interpret single JSON object as array with one element

Is there a way to make Jackson interpret single JSON object as an array with one element and vice versa? Example, I have 2 slightly different formats of JSON, I need both to map to same Java object: ...
0
votes
0answers
14 views

Jackson parser skipping blackslash

Please could anyone give a suggestion for my following issue with Jackson, that is occurring while parsing a JSON string. I am getting the exception when parsing the following JSON string that is ...
1
vote
1answer
18 views

CXF failing after upgrading Jackson lib

I have just upgraded from Jackson 2.1.1 to 2.2.2 and it has caused the following exception: javax.ws.rs.client.ClientException: .No message body writer has been found for class : class ...
0
votes
2answers
62 views

Creating a json object using jackson

How can I create a json array like the example below using jackson. I tried using ObjectMapper, but this does not seem correct. try (DirectoryStream<Path> ds = ...
0
votes
1answer
20 views

Jackson not ignoring unannotated fields

I'm trying to convert the following object to JSON: public class Product { private ProductEntity productEntity; private Priority priority; public Product() { } public ...
1
vote
1answer
45 views

Small Example of Jackson Scala Module?

Can anyone point me towards a simple example of Jackson serialization/deserialization with their Scala module for 2.10? I'm looking for reflection-based JSON not requiring field-by-field annotation ...
0
votes
1answer
36 views

Can someone please tell me why I am getting HTTP Status 406 from Spring

Can someone please tell me why I am getting HTTP Status 406 from Spring? I am trying to make spring return some json code and I am getting back a 406 status.. Here is my controller code: ...
0
votes
0answers
20 views

How to ignore @JsonTypeInfo annotation during deserialization

Here is my Class with JSON Annotation @JsonIgnoreProperties(ignoreUnknown = true) @XmlRootElement @Entity @JsonTypeInfo(use=org.codehaus.jackson.annotate.JsonTypeInfo.Id.CLASS, include=As.PROPERTY, ...
2
votes
1answer
38 views

JSON token name with @

I am using Jackson to serialize a JAXB generated class to JSON within Jersey. Whilst the generated JSON works fine some of the token names have an @ before them. e.g. xsd defines: <xs:element ...
1
vote
2answers
35 views

create json file dynamicly with hierarcy data

I need to create similar JSON file structure to the following post but its need to be dynamic, when I search I found the following post but the solution is specific for entry 1 and entry2 my needs is ...
0
votes
2answers
44 views

Minimize JSON to deserialize and persist complex POJO with JPA/Hibernate

I have a fairly complex POJO that I need to deserialize from a JSON string and persist in a MySQL database. The following is a very simplified example class: @Entity @Table(name="a") public class A{ ...
2
votes
1answer
66 views

Equivalent code settings for @JSonIgnore

I'm new to Java and Jackson and a lot of other technologies which I try to use, so I'd apreciate a detailed answer. Is there a way to prevent one or more fields from being serialized using Jackson ...
0
votes
1answer
27 views

Jquery Gives Error with status 200 for Spring Jersey Json Example?

Here is my resouce class: @Path("/a") public class SolrCloudResource { @GET @Path("/b") @Produces(MediaType.APPLICATION_JSON) public DocCollection listClusterState() { ... } Here ...
1
vote
2answers
69 views

Jackson parser json setter to take value as string array

I have below json: "[{\"movieName\":\"A\",\"Leadactor\":\"\",\"leadActress\":\"\",\"movieTitle\":\"\",\"hero\":\"\",\"heroine\":\"\",\"source\":\"IMDB\"}," + ...
0
votes
2answers
38 views

Jackson bug (or feature!?) when using java.util.Set - mySet.size() is always 1

I am using Jackson 2.2.0 and Spring 3.2.0 with Hibernate 4.2.2. I recently had to send an array of objects via POST to the server: {"cancelationDate":"2013-06-05", "positions":[ {"price":"EUR ...
1
vote
1answer
16 views

@JsonIdentityInfo custom reference serialization?

With @JsonIdentityInfo we can do things like : { "@id" : 1, "value" : 13, "next" : { "@id" : 2, "value" : 42, "next" : 1 } } The reference is a primitive ...
1
vote
1answer
94 views

SpringMVC + Hibernate Tomcat 500, json no stack trace

I keep getting an error 500 from Tomcat when I return a list of entities from my service layer in Spring. If I just make the entities on the fly in memory I don't get the error and they return fine, ...

1 2 3 4 5 36