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 certain celestial performance issue(as of Sept 2009).

I am continuing my comparison, in the meanwhile I was looking for help to make up my mind.

link|improve this question

2  
Also, for Android usage, latest performance benchmark I have seen is this: martinadamek.com/2011/02/04/… – StaxMan Feb 15 '11 at 22:19
Latest CowTalk performnce benchmark. - January, 08, 2011 – Iogui Feb 24 '11 at 3:42
2  
One quick note: anyone choosing GSon should make sure to use 2.1 -- its performance is finally measurably better than earlier versions. – StaxMan Feb 11 at 21:07
feedback

closed as not constructive by Will Mar 8 at 17:39

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

4 Answers

up vote 16 down vote accepted

I did this research the last week and I ended up with the same 2 libraries. As I'm using Spring 3 (that adopts Jackson in its default Json view 'JacksonJsonView') it was more natural for me to do the same. The 2 lib are pretty much the same... at the end they simply map to a json file! :)

Anyway as you said Jackson has a + in performance and that's very important for me. The project is also quite active as you can see from their web page and that's a very good sign as well.

link|improve this answer
Also, Google GSon does not yet suppor circular references. Does Jackson handle them ? – Guido García Mar 5 '10 at 8:12
Circular References support... that should be a primary feature but I'm not sure if it does support them, I've never encountered a circular reference so far (even if they should be quite common I think, especially in the model). Here's another benchmark that can highlight how fast Jackson is if compared to GSon. It looks 100x faster in Serialization/Deserialization code.google.com/p/thrift-protobuf-compare/wiki/Benchmarking – mickthompson Mar 5 '10 at 8:45
1  
Jackson does not handle circular references currently. If that is important, XStream does; not sure if any native json package does (flex-json perhaps?) – StaxMan Mar 12 '10 at 7:39
2  
As of version 1.6, Jackson does support circular references. See Handle bi-directional references using declarative methods for reference. – Ophir Radnitz Apr 10 '11 at 20:41
feedback

Jackson and Gson are the most complete Java JSON packages regarding actual data binding support; many other packages only provide primitive Map/List (or equivalent tree model) binding. Both have complete support for generic types, as well, as enough configurability for many common use cases.

Since I am more familiar with Jackson, here are some aspects where I think Jackson has more complete support than Gson (apologies if I miss a Gson feature):

  • Extensive annotation support; including full inheritance, and advanced "mix-in" annotations (associate annotations with a class for cases where you can not directly add them)
  • Streaming (incremental) reading, writing, for ultra-high performance (or memory-limited) use cases; can mix with data binding (bind sub-trees) -- EDIT: latest versions of Gson also include streaming reader
  • Tree model (DOM-like access); can convert between various models (tree <-> java object <-> stream)
  • Can use any constructors (or static factory methods), not just default constructor
  • Field and getter/setter access (earlier gson versions only used fields, this may have changed)
  • Out-of-box JAX-RS support
  • Interoperability: can also use JAXB annotations, has support/work-arounds for common packages (joda, ibatis, cglib), JVM languages (groovy, clojure, scala)
  • Ability to force static (declared) type handling for output
  • Support for deserializing polymorphic types (Jackson 1.5) -- can serialize AND deserialize things like List correctly (with additional type information)
  • Integrated support for binary content (base64 to/from JSON Strings)
link|improve this answer
1  
Actually, this post -- cowtowncoder.com/blog/archives/2010/11/entry_434.html -- summarizes many of Jackson features that are not found in other packages. – StaxMan Mar 2 '11 at 23:02
feedback

Gson 1.6 now includes a low-level streaming API and a new parser which is actually faster than Jackson.

link|improve this answer
I would be interested in seeing a measurement that backs this up. At least measurements at: wiki.fasterxml.com/JacksonInFiveMinutes still indicate that GSON is not competitive with other Java json packages. – StaxMan Jan 28 '11 at 19:46
We have micro-benchmarks available (checked into Gson subversion repository under trunk/metrics directory) that show that on simple object conversions, the low-level streaming API could be upto 10x faster. There are other benchmarks too (which I need to encourage the original author to publish) that this low-level API currently beats other libraries including Jackson. However, creating comprehensive and representative benchmarks is going to take some time and effort. – inder Feb 7 '11 at 13:12
2  
One more data point: jvm-serializers (github.com/eishay/jvm-serializers) now has "gson/manual" test which uses GSON streaming api as alternative to data binding. Once author runs 'official' numbers, wiki can be updated. But from running this locally, I don't think it supports statements of being super fast. – StaxMan Jun 8 '11 at 0:01
(addition to above: official numbers were included -- streaming Gson is faster than databinding, but not up to Jackson performance level) – StaxMan May 3 at 1:08
feedback

It seems that GSon don't support JAXB. By using JAXB annotated class to create or process the JSON message, I can share the same class to create the Restful Web Service interface by using spring MVC.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.