Tagged Questions
Jackson JSON processor, a Java library for handling JSON tasks like reading and writing (parsing / generating) and data binding to/from Java objects.
30
votes
4answers
13k views
Jackson Vs. Gson
After searching through some existing libraries for JSON, I have finally ended up with these two:
Jackson
Google GSon
I am a bit partial towards GSON, but word on the net is that GSon suffers from ...
14
votes
7answers
19k views
Spring 3.0 making JSON response using jackson message converter
i configure my messageconverter as Jackson's then
class Foo{int x; int y}
and in controller
@ResponseBody
public Foo method(){
return new Foo(3,4)
}
from that i m expecting to return a JSON ...
11
votes
3answers
2k views
REST with Spring and Jackson full data binding
I'm using Spring MVC to handle JSON POST requests. Underneath the covers I'm using the MappingJacksonHttpMessageConverter built on the Jackson JSON processor and enabled when you use the ...
10
votes
2answers
2k views
Using Jackson as Jersey client serializer
Is it possible to use Jackson as the serializer/marshaller for JSON data instead of JAXB when using Jersey Client API?
If so how to configure it?
9
votes
3answers
4k views
JSON: Jackson stream parser - is it really worth it?
I'm making pretty heavy use of JSON parsing in an app I'm writing. Most of what I have done is already implemented using Android's built in JSONObject library (is it json-lib?).
JSONObject appears ...
8
votes
1answer
5k views
Parsing json into java objects in spring-mvc
I'm familiar with how to return json from my @Controller methods using the @ResponseBody annotation.
Now I'm trying to read some json arguments into my controller, but haven't had luck so far.
Here's ...
8
votes
1answer
833 views
Should I make Jackson's ObjectMapper as static final
ObjectMapper in Jackson seem to be thread safe.
http://wiki.fasterxml.com/JacksonFAQThreadSafety
Does this mean, is it OK for me to declare
class Me {
private static final ObjectMapper mapper = ...
7
votes
2answers
272 views
Jackson's @JsonView, @JsonFilter and Spring
Can one use the Jackson @JsonView and @JsonFilter annotations to modify the JSON returned by a Spring MVC controller, whilst using MappingJacksonHttpMessageConverterand Spring's @ResponseBody and ...
7
votes
2answers
1k views
what's the difference between jackson-core-asl and jackson-core-lgpl [closed]
Any difference if we want to build commercial software?
7
votes
3answers
5k views
Replace standard Android JSON parser for better performance?
I know that Android has a JSON parser baked in but I was wondering if it was worth using something that offered better performance (like Jackson - see http://jackson.codehaus.org/) ? Anybody tried ...
6
votes
2answers
2k views
android jackson json object mapper array deserialization
i need help parsing a response with the jackson mapper to a POJO. i have this as a response:
"data": [{
"item": {
"downloaded": false,
"moderated": false,
...
6
votes
2answers
9k views
Jackson JSON + Java Generics
I am trying to deserialize/map the below JSON to List<Bill> java object using Jackson json library. (this json was generated by jackson, Iam omitting that piece for brevity)
...
6
votes
2answers
4k views
Problem when trying to use Jackson in java
I'm trying to use Jackson to convert some JSON data into Java objects ,a list of objects to be precise,but I get this error:
org.codehaus.jackson.map.JsonMappingException: Can not deserialize ...
6
votes
4answers
5k views
Strange Jackson exception being thrown when serializing Hibernate object
Jackson is throwing a weird exception that I don't know how to fix. I'm using Spring, Hibernate and Jackson.
I have already considered that lazy-loading is causing the problem, but I have taken ...
6
votes
1answer
1k views
Warning: This class was probably produced by a broken compiler
I have added Jacson libs to my android project and now I am getting such warnings in console:
warning: Ignoring InnerClasses attribute for an anonymous inner class
that doesn't come with an ...
5
votes
3answers
4k views
Jersey + Jackson JSON date serialization format problem - how to change the format or use custom JacksonJsonProvider
I am using Jersey + Jackson to provide REST JSON services layer for my application. The problem I have is that the default Date serialization format looks like that:
"CreationDate":1292236718456
At ...
5
votes
4answers
1k views
Spring, Jackson and Customization (e.g. CustomDeserializer)
Being still a little unfamiliar with Spring, I have encountered a problem that makes it necessary implementing my a custom deserialzer for Jackson. The procedure is described in a small tutorial, ...
5
votes
2answers
577 views
Partial JSON Serialization at Run-Time (for RESTful Queries)
I am trying to convert a Java object to JSON in Tomcat (currently using Jackson). Based on the fields in a RESTful request, I want to serialize only those fields. I want to support requests for any ...
5
votes
2answers
4k views
Infinite Recursion with Jackson JSON and Hibernate JPA issue
When trying to convert a JPA object that has a bi-directional association into JSON, I keep getting
org.codehaus.jackson.map.JsonMappingException: Infinite recursion (StackOverflowError)
All I ...
5
votes
4answers
2k views
Jackson - suppressing serialization(write) of properties dynamically
I am trying to convert java object to JSON object in Tomcat/jersey using Jackson. And want to suppress serialization(write) of certain properties dynamically.
I can use JsonIgnore, but I want to make ...
5
votes
3answers
7k views
How to generate JSON from a Jersey resource?
I'm using Jersy and want to output the following JSON with only the fields listed:
[
{
"name": "Holidays",
"value": ...
4
votes
1answer
198 views
Integrating JackSon for JSON View with Spring 2.5
We are using Spring 2.5 and spring-json for JSON support. We have the below configuration in views.xml
<bean name="jsonView" class="org.springframework.web.servlet.view.json.JsonView"/>
Now, ...
4
votes
2answers
247 views
How can I tell jackson to ignore a property for which I don't have control over the source code?
Long story short, one of my entities has a GeometryCollection that throws and exception when you call "getBoundary" (the why of this is another book, for now let's say this is the way it works).
Is ...
4
votes
1answer
214 views
Serialize List[Any] to/from Json in Scala using Jackson
I've got a case class I'd like to be able to serialize and deserialize from JSON:
case class Foo(values: List[Any])
e.g.
Foo(List(new DateTime))
In this scenario, the DateTime gets serialized as ...
4
votes
1answer
125 views
how to specify jackson to only use fields - preferably globally
Default jackon behaviour seems to use both properties (getters and setters) and fields to serialize and deserialize to json.
I would like to use the fields as the canonical source of serialization ...
4
votes
2answers
135 views
Jackson Mapper post-construct
I am using the Jackson ObjectMapper to deserialize some JSON into a Java class, which we'll call PlayerData. I would like to add a bit of logic to the PlayerData class to fix up some data after the ...
4
votes
3answers
358 views
Marshaling JSON and Generics in Java with Spring MVC
I'm trying to marshall a JSON object into a wrapper class that contains a generic object, as well as additional information about the object's signature.
public class Signable<T> {
private ...
4
votes
2answers
683 views
Serializing Map<Date, String> with Jackson
I want to serialize a Map with Jackson.
The Date should be serialized as a timestamp, like all my other dates.
The following code renders the keys in the form "Tue Mar 11 00:00:00 CET 1952" (which is ...
4
votes
2answers
556 views
spring-json vs jackson for spring framework 3.0.5
I'm about to choose a JSON library to a spring based application and want to get some pros and cons for both solutions. Of course conditional pros and cons are well seen :)
Thanks in advance!
4
votes
1answer
495 views
How to use Jackson to deserialise an array of objects
The jackson data binding documentation (http://jackson.codehaus.org/DataBindingDeepDive) indicates that Jackson supports deserialising "Arrays of all supported types" but I can't figure out the exact ...
4
votes
1answer
647 views
Deserializing JSON into object with overloaded methods using Jackson
I am attempting to deserialize a JSON object stored in CouchDb using Jackson. This object needs to deserialize into a pojo that contains overloaded methods. When I attempt to retrieve the object ...
4
votes
1answer
562 views
how to configure spring mvc 3 to not return “null” object in json response?
a sample of json response looks like this:
{"publicId":"123","status":null,"partner":null,"description":null}
It would be nice to truncate out all null objects in the response. In this case, the ...
4
votes
2answers
3k views
Parsing JSON in Spring MVC using Jackson JSON
Ok, so I've been looking at this for a little while now and am no further on. I've got a Spring MVC servlet that I need to accept JSON from a JavaScript front end web app. To parse the JSON I need ...
4
votes
3answers
2k views
Java.util.Map to JSON Object with Jersey / JAXB / Jackson
I've been trying to create a Jersey REST Webservice. I want to receive and emit JSON objects from Java classes like the following:
@XmlRootElement
public class Book {
public String code;
...
4
votes
1answer
613 views
Spring REST multiple @RequestBody parameters, possible?
I've implemented a Spring RESTful web service. Using Jackson JSON for Object Mapping. I have a method that accepts two parameters.
public Person createPerson(
@RequestBody UserContext ...
4
votes
2answers
2k views
Jackson ObjectMapper() constructor throws NoSuchMethod
I'm using Jackson sample code to deserialize a POJO:
ObjectMapper m = new ObjectMapper();
This line throws a NoSuchMethodError:
Exception in thread "main" java.lang.NoSuchMethodError: ...
4
votes
1answer
3k views
Configure Jersey/Jackson to NOT use @XmlElement field annotation for JSON field naming
I am running a Jersey REST service. The POJO's which represent my resources are JAXB (XML) annotated simple Java classes (they are generated from a schema definition - so they have the annotations).
...
4
votes
3answers
8k views
jackson json *Unrecognized field, not marked as ignorable*
I need to convert a certain Json string to Java object. I am using Jackson for Json handling. I have no control over the input json (I read from a web service). This is my input json:
...
4
votes
2answers
2k views
How to make JsonGenerator pretty-print Date and DateTime values?
I'm using this method to convert any object to a json string:
private String objectToJson(Object object) throws IOException {
// write JSON
StringWriter writer = new StringWriter();
...
4
votes
1answer
3k views
Jackson: Ignore Json configuration value
I have the following json file:
{
"segments": {
"externalId": 123,
"name": "Tomas Zulberti",
"shouldInform": true,
"id": 4
}
}
But ...
4
votes
2answers
4k views
how to parse a JSON string into JsonNode in Jackson?
it should be so simple, but I just cannot find it after being trying for an hour #embarrasing
I need to get a JSON string e.g. {"k1":v1,"k2":v2} parsed as a JsonNode
JsonFactory factory = new ...
4
votes
2answers
6k views
Spring's Json not being resolved with appropriate response
I've tried to have a controller in Spring return a JSON response to no avail using the Jackson classes as recommended with 3.0. I've got the jackson jar files(jackson-core-asl-1.5.5.jar & ...
4
votes
1answer
2k views
How to serialize Joda DateTime with Jackson JSON processer?
How do I get Jackson to serialize my Joda DateTime object according to a simple pattern (like "dd-MM-yyyy"?
I've tried:
@JsonSerialize(using=DateTimeSerializer.class)
private final DateTime date;
...
4
votes
3answers
8k views
How to convert a JSON string to a Map<String, String> with Jackson JSON
This is my first time trying to do something useful with Java..
I'm trying to do something like this but it doesn't work:
Map<String, String> propertyMap = new HashMap<String, String>();
...
3
votes
2answers
67 views
Spring MVC, deserialize single JSON?
How can I easily separate JSON values that are sent in the same request?
Given that I POST a JSON to my server:
{"first":"A","second":"B"}
If I implement the following method in the Controller:
...
3
votes
2answers
117 views
Different names of JSON property during serialization and deserialization
Is it possible: to have one field in class, but different names for it during serialization/deserialization in Jackson library?
For example, I have class "Coordiantes".
class Coordinates{
int red;
...
3
votes
2answers
78 views
How can I support JSR-303 validation and Jackson JSON mapping together effectively?
When building a RESTful web service using Spring MVC, I feel I've encountered a tricky situation when trying to combine Jackson JSON deserialization and JSR-303 bean validation.
One of the neat ...
3
votes
2answers
82 views
How to converting a Java List in a Java Map when serializing to JSON with Jackson
I have a List with Person's in Java and each person has an id:
class Person{
public int id;
public String name;
}
Now I like to serialize this list in a JSON like that:
{
"1":{
"name": ...
3
votes
2answers
138 views
Retrieve strings from JSON array using Jackson
I've found several answers that are close to what I'm trying to do, but not enough that I've been able to get it to work. I have a bunch of JSON that looks like this example (only actually several ...
3
votes
1answer
185 views
Jackson JSON: get node name from json-tree
How can I recieve the node names from a JSON tree using Jackson?
The JSON-File looks something like this:
{
node1 : "value1",
node2 : "value2",
node3 : {node3.1 : "value3.1",
node3.2 : ...