Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create JSON using grails.web.JSONBuilder. Is there a way to use the OutputStreamWriter in the JSONBuilder(like the MarkUpBuilder has)? If not, what is the easiest way to create JSON using JSONBuilder? A simple example would be helpful. thanks.

share|improve this question

1 Answer

A grails guide has a starting point for this: http://grails.org/doc/latest/guide/6.%20The%20Web%20Layer.html#6.1.7%20XML%20and%20JSON%20Responses as far as code sample here ya go:

def listCounts = {
        render ([data:[
            //Unassigned
            unassigned:Task.activeOnly.open.unassigned.count(),
            //Open
            open:Task.activeOnly.open.count(),
            //My
            my:Task.activeOnly.open.my("username").count(),
            //Review
            review:Task.activeOnly.myReview("username").count()
        ]] as JSON)
    }

essentially any map rendered as JSON will spit out JSON

share|improve this answer
I am using the custom DomainObjectWriter(using JAXRS). So I can't use the render method. I want to use grails.web.JSONBuilder. For example, I have something like this for xml content-type : def writer = new OutputStreamWriter(entityStream, charset) def builder = new MarkupBuilder(writer) – Mike Oct 13 '11 at 21:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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