Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ParserExecution time in microsecondsIssues
40 characters100 characters1000 characters
Jackson Read7.488 10.984 1150 50.49 
GSON Read0.509 <1<10.818 8.212 GSON parses all numerical values to Doubles and as such it unable to dynamically allocate the object type that it is parsing 
Jackson Write0.296 <1<10.567 5.12 
GSON Write0.531 <11.332 14.88415


ParserProsCons
Jackson

Consistent conversion of numerics
More widely used
Faster writes ****
Built into Spring Framework
Has annotation support

Slower Read
GSONFaster Reads

Converts numerics to Doubles
Less Popular

...