I found many things about converting Groovy to JSON, but oddly enough, not the other way.
What is the (best) JSON to Groovy parser around there ?
|
feedback
|
|
Because compiled Groovy classes are compatible with Java classes, you should be able to use any Java library for converting JSON to POJOs (or POGOs). Jackson is a fairly popular choice which you can use to convert JSON like this:
to a Map using:
Or if you want to convert the JSON to a Groovy User class:
This will map properties in the Groovy class to keys in the JSON. | |||
|
feedback
|
|
If you are on Groovy 1.8 or later, there is a build in JsonSlurper you can use this way:
| ||||
|
feedback
|
|
JSON-lib claims to be able to transform POGO to JSON and back. If POGO means what I think it does (Plain Old Groovy Object), you're set :). They give this example:
Update: I've tried the lib myself, this is the complete code:
It'll chase you through a marathon of downloading dependencies (ezmorph, commons lang, commons logger) and once you've resolved them all, this is what you get:
According to The mailing list, you get this for not calling GJsonlib.enhanceClasses(), but I did call that, as you can see above. I've concluded that it's a worthwhile endeavor to hate Groovy's JSON-lib. | |||||||
feedback
|
|
I use JSON-lib in HTTPBuilder, but I use the JSONSlurper class to parse a string to a JSON instance:
To go from Object to JSON, I do this:
| |||
feedback
|
|
To the people having trouble with json-lib and GJson.enhanceClasses(). Try GJson.enhanceString() instead.
| |||
|
feedback
|