FYI, it appears from the mailing list this was added around 1.0 RC1.import grails.converters.*
def jsonArray = JSON.parse("""['foo','bar', { a: 'JSONObject' }]""")
println "Class of jsonArray: ${jsonArray.class.name}"
jsonArray.each { println "Value: ${it}" }
Building JSON is super easy too in grails/groovy using the render as. And don't forget to import grails.converters.
render Book.list(params) as JSON
Update: Read my recent article on testing REST Services that return JSON using groovy and httpbuilder.
I enjoy reading your blog entries. I posted some info on using the Grails JSON builder here with Dojo, for those who are interested: Grails & JSON
ReplyDeleteI believe producing JSON in Grails has received more electronic ink than consuming it, thanks for the info James.
ReplyDeleteBy the way, you can also use Json-lib for this same purpose ;-)
been looking for this all over the place man...thanks
ReplyDeleteMmmmn. Yummy.
ReplyDeleteSince the domain objects get rendered as an array don't really need Json-lib - but, I'm sure there's more candy there.
Thanks James. Funny how the development world is so small.
Hello,
ReplyDeleteGood post...when i google 'grails json parser', the first page is almost exclusively links to your article!
I'm trying to parse nested json output, and make them display in a user-friendly format, instead of rows and rows of output that looks like garbage...any thoughts on that?
Thanks!
@babe
ReplyDeleteThanks for the comments. Suggestion for your pretty json would be to buy a mac and then buy textmate. I personally don't have a work mac (yet), several coworkers do and you can format json with one click in textmate. Super easy and super slick.
If you do write a program, make it a public site where anyone can paste in json and your website will spit it out in readable form. Call the site prettyjson.com.
Here is a pretty print json website where developers can paste their json to view it in a readable fashion.
ReplyDeletehttp://www.cerny-online.com/cerny.js/demos/json-pretty-printing
Here is an idea plugin that does JSON formatting.
ReplyDeletehttp://dontmindthelanguage.wordpress.com/2009/02/05/intellij-json-formatter-plugin/
Thanks for good post.
ReplyDeleteI have question related JSON render.
How will render JSON in gsp files
I love this blog post Plz RT
ReplyDelete